具有条件的Spring文件配置

时间:2017-02-16 07:41:21

标签: java spring cxf

在我的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

由于

1 个答案:

答案 0 :(得分:1)