Sébastien Brousse created CAMEL-6916:
----------------------------------------
Summary: PropertyPlaceHolder : IgnoreMissingLocation should
protect from unresolvable system variable location
Key: CAMEL-6916
URL: https://issues.apache.org/jira/browse/CAMEL-6916
Project: Camel
Issue Type: Improvement
Components: camel-core
Affects Versions: 2.12.1
Reporter: Sébastien Brousse
Priority: Minor
When you add a location based on system variable in a propertyPlaceholder, the
ignoreMissingLocation protect you from a missing file but not from a missing
system variable (or env as well).
Ex :
{code:xml}
<propertyPlaceholder ignoreMissingLocation="true"
location="classpath:camel-property.properties,
file:///${camel-property.config}" />
{code}
This configuration failed to load context during unit tests, because
_camel-property.config_ system variable is not set. Spring handle this with the
_ignore-resource-not-found_ attribute, which is according to me the equivalent
of ignoreMissingLocation.
--
This message was sent by Atlassian JIRA
(v6.1#6144)