DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
<from uri="seda:incomingOrders">
<setBody>
<el>${in.body.replaceAll('id','orderId')}</el>
</setBody>
<to uri="seda:processOrder"/>
|
And the sample using the Java DSL:
| Code Block | ||||
|---|---|---|---|---|
| ||||
from("seda:incomingOrders").setBody().el("${in.body.replaceAll('id','orderId')}).to("seda:processOrder");
|
Dependencies
To use EL in your camel routes you need to add the a dependency on camel-juel which implements the EL language.
...