I'm using spring-boot
and would like to automatically import src/main/resources/applicationContext.xml
file.
So far it only works if I explicit tell spring to import it:
@EnableAutoConfiguration
@Configuration
@ImportResource({"classpath*:applicationContext.xml"})
But spring-boot has so many default, maybe someone knows the "default" name for the app.xml file so that is gets picked up by spring-boot by default?