项目A中依赖了项目B提供的jar包,其中有一部分配置是从jar以xml形式引入的,xml中要求有类似数据库这样的profile的环境配置。会产生一个很奇怪的问题,通过最外层的application.properties文件定义的属性不能被正常解析。
项目A:
- src/main/resources
|- application.properties
|- my.properties
|- context.xml
- libraries
|- B.jar
|-- my2.properties
|-- context2.xml
代码:
application.properties
my.name=application
my.properties
my.name=my1
context.xml
<import resource="classpath:context2.xml"/>
<context:property-placeholder ignore-unresolvable="true" order="2" location="classpath:my.properties"/>
<bean id="bean1" class="Bean">
<property name="name" value="${my.name}" />
</bean>
my2.properties
my.name=my2
context2.xml
<bean id="propertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="true"></property>
<property name="location">
<value>classpath:my2.properties</value>
</property>
</bean>
运行后,注入的${my.name}只有两种情况,my1 或者my2. 不会是application
如果一个key,user.name 在 application.properties内配置,同时又在xml引用的my.properties文件中引用,会造成在加载xml的Beanfatory中读取到my.properties中的配置,非application.properties的配置
Spring-一个由@ImportResource加载引起的问题
原文:https://www.cnblogs.com/jason0529/p/13538790.html