in our modular application, we have multiple context:property-placeholder definitions, one for each module. Eg.:
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"/>
etc.
@Value works great, for injecting single values, but I'd like to debug all configuration properties at once. Is it possible to autowire the merged properties read from all files?