Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
ExchangeProperty Expression LanguageThe ExchangeProperty Expression Language allows you to extract values of named exchange properties. Example UsageThe <route> <from uri="direct:a"/> <recipientList> <exchangeProperty>myProperty</exchangeProperty> </recipientList> </route>
And the same example in Java DSL: from("direct:a") .recipientList(exchangeProperty("myProperty"));
And with a slightly different syntax where you use the builder to the fullest e.g., avoid using parameters but using stacked operations, notice that from("direct:a") .recipientList().exchangeProperty("myProperty"); DependenciesThe ExchangeProperty language is part of |