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