http://camel.apache.org/using-propertyplaceholder.html
Following section: *Clashing Spring property placeholders with Camels Simple
language*
in the above link explains how to avoid this problem.
Following now works fine
*
$simple{body}
Hi,
Just retried it with Camel 2.9.0 and
${body}
and
${body}
works fine.
Only in Camel 2.12.0 - it assumes that anything under ${} is a property -
and throws an exception that property value not found for the Key.
Is this a genuine defect or am I using it wrongly?
regards
D
--
Vi
Hi,
I have tried
${body}
and
${in.body}
Still getting the same exception.
Looks like Camel is assuming that it to be a property 'key' being passed
into the routes.xml.
regards
D
--
View this message in context:
http://camel.465427.n5.nabble.com/Issue-with-camel-el-in-Camel-2-12-0-tp5740188p5
Hello!
Why don't you use
${body}
cheers
Hilderich
--
View this message in context:
http://camel.465427.n5.nabble.com/Issue-with-camel-el-in-Camel-2-12-0-tp5740188p5740190.html
Sent from the Camel - Users mailing list archive at Nabble.com.
All,
I am migrating from camel 2.9.0 to 2.12.0.
One change I had to do was around additional boolean argument added in
method resolveProperties of
org.apache.camel.component.properties.DefaultPropertiesResolver
I am also seeing the use of Expression Language failing in 2.12.0.
My Route is as foll