Variable
Since Camel 4.4
The Variable Expression Language allows you to extract values of named variables.
Example usage
The recipientList EIP can utilize a variable:
-
Java
-
XML
-
YAML
from("direct:a").recipientList(variable("myVar")); <route>
<from uri="direct:a" />
<recipientList>
<variable>myVar</variable>
</recipientList>
</route> - route:
from:
uri: direct:a
steps:
- recipientList:
expression:
variable:
expression: myVar In this case, the list of recipients are contained in the variable 'myVar'.