構成があるとしましょう:
<bean id="batchJobProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>first.properties</value>
<value>second.properties</value>
</list>
</property>
</bean>
first.properties にはプロパティ "my.url=first.url" があります second.properties にはプロパティ "my.url=second.url" があります
では、「myUrl」Bean にはどの値が注入されるのでしょうか? プロパティ解決の定義された順序はありますか?