Versions Compared

Key

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

Support for other languages inside Scala DSL routes is delivered through traits. The org.apache.camel.scala.dsl.languages package currently offers traits to support XPath. To use any given language, you can mix-in the trait when creating your RouteBuilder like this:

...

.

You can use any of the support Camel Languages in the Scala DSL, below is a couple of examples:

Using XPath

With the XPath trait, you have an additional method available on an Exchange to do XPath queries against the message. Just look at this Splitter example, where the xpath method is used in a Exchange ⇒ Any* function literal

...