我想要一些需要的资源,但如果缺少其他资源,请忽略它......怎么做?如我所见,我只能做
<context:property-placeholder
ignore-resource-not-found="true"
location="required.properties, not-required-override.properties" />
这会影响那里提到的每个配置。
// 编辑 这是一个工作示例
<bean id="requiredProperties"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath:database.properties</value>
<value>classpath:storage.properties</value>
<value>classpath:log4j.properties</value>
<value>classpath:mailing.properties</value>
</list>
</property>
</bean>
<context:property-placeholder
properties-ref="requiredProperties" ignore-resource-not-found="true"
location="file:\${user.dir}/config/cvnizer.properties" />