PropertyPlaceholderConfigurer:无法读取多个属性文件

时间:2017-11-13 19:01:48

标签: java spring property-files

下面是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方法的属性文件。

enter image description here

请注意,文件environmentLocator.properties和dao-config.properties存在于不同的jar文件中,尽管它们位于类路径中。 可能是什么问题?

0 个答案:

没有答案