可以說我有一個配置:Spring屬性佔位符配置器中有多個位置的屬性解析順序是什麼?
<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?是否有任何已定義的屬性解析順序?
採取看看這個鏈接-http://forum.springsource.org /showthread.php?36672-PropertyPlaceholderConfigurer-multiple-property-files –