Hi All,
I have a property file and one of the propery can have multiple values. I am using PropertyPlaceholderConfigurer to load the propertied to a Java Bean.
e.g (Property can have multiple values.)
userids=1,2
Currently the bean converts the property value to a List containing one object. i.e value of the first object is "1,2".
Can we configure some way it to take it as two elements.
Regards
Nagaprakash


Reply With Quote