I have a property file as such
com.country.<COUNTRY>=<values comma seperated>
For example:
com.country.UK=100,200
com.country.US=10,20
Now in future there can be many others country entries added
Can I get these values in to a Map<String,List<Integer>>
in spring application context xml via propertyPlaceHolder?