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 Language

The ExchangeProperty Expression Language allows you to extract values of named exchange properties.

Example Usage

The recipientList element of the Spring DSL can utilize an exchangeProperty expression. In this example, the list of recipients are contained in the property myProperty.

<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 exchangeProperty is not a parameter but a stacked method call.

from("direct:a")
  .recipientList().exchangeProperty("myProperty");

Dependencies

The ExchangeProperty language is part of camel-core.

© 2004-2015 The Apache Software Foundation.
Apache Camel, Camel, Apache, the Apache feather logo, and the Apache Camel project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
Graphic Design By Hiram