Using the new @PropertySource annotation in Spring 3.1, how can you access multiple property files with Environment?
@PropertySource
Currently I have:
@
If you can migrate to Spring 4.x the problem has been solved with the new @PropertySources annotation:
@PropertySources({ @PropertySource("/file1.properties"), @PropertySource("/file2.properties") })