If I have 2 .properties files setup in my Spring XML as so:
You can use @PropertySource
@Configuration @PropertySource(name = "someName", value = {"classpath:a.properties", "classpath:b.properties"}) public class MyConfiguration { }