下面是spring-context.xml的一部分,其中定义了PropertyPlaceholderConfigurer bean:
<bean id="propertyResource" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:property-files/config-info.properties</value>
<value>classpath:property-files/biservices-config.properties</value>
<value>classpath:dao-config.properties</value>
<value>classpath:environmentLocator.properties</value>
</list>
</property>
</bean>
但是,在设置断点@ PropertyPlaceholderConfigurer#setLocations
之后,我没有找到所有传递给setter方法的属性文件。
请注意,文件environmentLocator.properties和dao-config.properties存在于不同的jar文件中,尽管它们位于类路径中。 可能是什么问题?