当文件在spring中的同一个项目中时,我配置了类似的东西
@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")
但我想配置另一个项目中可用的少数文件,如何在@ContextConfiguration
春天执行此操作。
请澄清。
答案 0 :(得分:2)
@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")
这要求spring从类路径加载所有 META-INF/spring/applicationContext*.xml
,或不加载项目(即一些JAR依赖项)。
请参阅@ContextConfiguration
javadoc