具有多个位置的Spring属性占位符配置器中的属性解析顺序是什么?
2022-09-03 18:01:49
假设我有一个配置:
<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呢?属性分辨率是否有任何定义的顺序?