Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tip
titleBridging Spring and Camel property placeholdersProperty Placeholders

From Camel 2.10: Spring's property placeholder can be bridged with Camel's. See below for more details.

...

From Camel 2.19.0: you can set which location can be discarded if missing by setting  optional=true, (false by default).

Example:

 

Code Block
languagejava
pc.setLocations("com/mycompany/override.properties;optional=true,com/mycompany/defaults.properties");

 

...