When starting Spring context I have a bean that requires configuration files:
<bean id="ConfBean" class="com.FailSafeConfiguration">
<property name="loeConf" value="${gi-alert-loeconf}"/>
<property name="cdlConf" value="${gi-alert-cdlconf}"/>
<property name="failSafeBean" ref="failSafeBean"/>
</bean>
If the files are missing the whole Java application doesn't start. Is there a way for this not to happen? Even if the properties don't have anything in them?