いくつかのリソースを必要としますが、欠落している場合は他のリソースを無視します...どうすればよいですか? 見るからにできることしかない
<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" />