Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To use a JavaScript expression use the following Java code

Code Block
import static org.apache.camel.builder.script.ScriptBuilder.*;

...

... javaScript("someJavaScriptExpression") ... 

For example you could use the javaScript function to create an Predicate in a Message Filter or as an Expression for a Recipient List

Example

In the sample below we use JavaScript to create a Predicate use in the route path, to route exchanges from admin users to a special queue.

Code Block
java
java

    from("direct:start")
        .choice()
            .when().javaScript("request.headers.get('user') == 'admin'").to("seda:adminQueue")
        .otherwise()
            .to("seda:regularQueue");