0

当文件在春天的同一个项目中时,我配置了这样的东西

@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")

但我想配置另一个项目中可用的几个文件,如何在春季使用 @ContextConfiguration.

请说清楚。

4

1 回答 1

2
@ContextConfiguration("classpath:META-INF/spring/applicationContext*.xml")

这要求 spring 从类路径中加载所有 META-INF/spring/applicationContext*.xml内容,无论是否是您的项目(即一些 JAR 依赖项)。

参见@ContextConfigurationjavadoc

于 2013-03-25T05:50:45.517 回答