在我的spring配置中,当我开始测试时,我正在加载一个包含所有cxf服务的文件。有时,我不想在我的测试中加载这些服务,因为没有必要,我想快速工作。
我以这种方式加载了所有的cxf服务:
<import resource="classpath:services-app-ib-es-test.xml" />
我可以更改此行以仅在条件方式下阅读吗?像这样:
<if javavm param loadcxf = true>
<import resource="classpath:services-app-ib-es-test.xml" />
</if>
编辑:我使用的是spring-core-2.55
由于
答案 0 :(得分:1)
使用Spring 3.1,您可以使用Profile
功能,将配置文件作为JM参数或在属性文件中。
我不知道春天2.x。
http://docs.spring.io/spring/docs/3.2.0.RELEASE/spring-framework-reference/html/new-in-3.1.html
http://spring.io/blog/2011/02/14/spring-3-1-m1-introducing-profile/
http://spring.io/blog/2011/02/11/spring-framework-3-1-m1-released/