如何使用@ContextConfiguration配置来自另一个项目的值

时间:2013-03-25 05:47:56

标签: java spring spring-mvc annotations

当文件在spring中的同一个项目中时,我配置了类似的东西

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

但我想配置另一个项目中可用的少数文件,如何在@ContextConfiguration春天执行此操作。

请澄清。

1 个答案:

答案 0 :(得分:2)

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

这要求spring从类路径加载所有 META-INF/spring/applicationContext*.xml,或不加载项目(即一些JAR依赖项)。

请参阅@ContextConfiguration javadoc