You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Header Expression Language

The Header Expression Language allows you to extract values of named headers.

Available as of Camel 1.5

Example usage

The recipientList element of the Spring DSL can utilize a header expression like:

<route>
  <from uri="direct:a"/>
  <recipientList>
    <header>recipientListHeader</header>
  </recipientList>    
</route>

In this case, the list of recipients are contained in the header 'recipientListHeader'.

  • No labels