I'm loading properties attributes from a .properties file using Spring as follows:

file: elements.properties
base.module.elementToSearch=1
base.module.elementToSearch=2
base.module.elementToSearch=3
base.module.elementToSearch=4
base.module.elementToSearch=5
base.module.elementToSearch=6

The spring xml file

file: myapplication.xml
<bean id="some"
      class="com.some.Class">
      <property name="property" value="#{base.module.elementToSearch}" />
</bean>

And my Class.java

file: Class.java
public void setProperty(final List<Integer> elements){
    this.elements = elements;
}

But when debugging, the parameter elements only get the last element into the List, so, there is a list of one element with value "6", instead of a List with 6 elements.

I tried other aproaches, like adding in value only #{base.module} but then it find no parameter in properties file.

A Workaround is to have in elements.properties file a list separated by commas, like:

base.module.elementToSearch=1,2,3,4,5,6

and use it as a String and parse it, but there would be a better solution.

Thanks you in advance!

link|improve this question
so I need to pass it as a comma separated string and parse in method. – RamonBoza Jun 2 '11 at 10:00
Exactly, although there is some libs already doing that for you (apache commons) - commons.apache.org/configuration/howto_properties.html – Colin Hebert Jun 2 '11 at 10:01
feedback

1 Answer

up vote 4 down vote accepted

If you define your array in properties file like

base.module.elementToSearch=1,2,3,4,5,6

You can load such array in you java class like this

  @Value( "${base.module.elementToSearch}")
  private String[] elementToSearch=null;
link|improve this answer
My elements contain comma. How do I escape separator? '\,' even '\\,' do not work. – banterCZ Mar 20 at 10:28
You can try to get them as list of integer and then converts them @Value( "${base.module.elementToSearch}") private List<Integer> elementToSearch; – Gal Bracha Mar 21 at 16:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.