在spring应用程序上下文中有条件地导入资源

时间:2013-05-23 10:39:02

标签: java spring

我是否可以在满足特定条件的情况下在弹簧上下文中导入内容?

<!-- import ONLY IF current environment is NOT testing -->
<import resource="classpath:context/caching-context.xml" />

目前我通过在我的测试用例中导入完全不同的上下文来做到这一点

@ContextConfiguration(locations = { "classpath*:ApplicationContextTesting.xml" })

但也许有一个更优雅的解决方案是不为生产和测试维护两个独立的应用程序上下文。

1 个答案:

答案 0 :(得分:8)

使用Spring配置文件。

<beans profile="not_test">
   <import resource="classpath:context/caching-context.xml" />
</beans>

Spring documentationblog post上的更多信息。