Search Tutorials


Apache Camel using Java DSL | JavaInUse



Apache Camel Using Java DSL

The Camel DSL is a language that allows to configure the behavior of the Camel Routing Engine. The two main types of DSL are
  • Java DSL
  • Spring XML Config
Both variants share the same functions though the syntax is somewhat different. Apache Camel offers a Java based DSL using the fluent builder style. The Java DSL is available by extending the RouteBuilder class, and implement the configure method.

Apache Camel Using Java DSL tutorial