当文件在春天的同一个项目中时,我配置了这样的东西
@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")
但我想配置另一个项目中可用的几个文件,如何在春季使用 @ContextConfiguration
.
请说清楚。
当文件在春天的同一个项目中时,我配置了这样的东西
@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")
但我想配置另一个项目中可用的几个文件,如何在春季使用 @ContextConfiguration
.
请说清楚。
@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")
这要求 spring 从类路径中加载所有 META-INF/spring/applicationContext*.xml
内容,无论是否是您的项目(即一些 JAR 依赖项)。
参见@ContextConfiguration
javadoc