モジュラー アプリケーションでは、各モジュールに 1 つずつ、複数の context: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 は、単一の値を注入するのに最適ですが、すべての構成プロパティを一度にデバッグしたいと思います。すべてのファイルから読み取られたマージされたプロパティを自動配線することは可能ですか?