ConfigurationException
使用 Apache Commons Configurations 1.9,如果找不到提供的文件,如何避免加载配置文件?
Spring 应用上下文类似于:
<bean name="foo.config" class="org.apache.commons.configuration.PropertiesConfiguration" init-method="load">
<property name="fileName" value="foo.properties" />
</bean>
但是我的配置文件是可选的,所以我想确保应用程序正确启动,即使文件不存在。
如何使用 Commons Configurations 实现这一目标?AFactoryBean
有效,但还有其他方法吗?