在我们的模块化应用程序中,我们有多个上下文: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非常适合注入单个值,但我想一次调试所有配置属性。是否可以自动装配从所有文件中读取的合并属性?