Spring:如何自动合并属性?

时间:2013-03-08 11:53:33

标签: java spring

在我们的模块化应用程序中,我们有多个上下文:property-placeholder定义,每个模块一个。例如:

的applicationContext-module1.xml:

<context:property-placeholder location="classpath*:module1.default.properties,classpath*:module1.${runtime.environment}.properties" ignore-unresolvable="true"/>

的applicationContext-module2.xml:

<context:property-placeholder location="classpath*:module2.default.properties,classpath*:module2.${runtime.environment}.properties" ignore-unresolvable="true"/>

@Value非常适合注入单个值,但我想一次调试所有配置属性。是否可以自动装配从所有文件中读取的合并属性?

0 个答案:

没有答案