Versions Compared

Key

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

...

This section is about regular Camel. The examples presented here in this section is much more in common of all the examples we have in the Camel documentation. So if

Note
Unlearn
Unlearn

If you have

...

been reading the previous

...

3 parts then, this quote applies:

you must unlearn what you have learned

...


Master Yoda, Star Wars IV

So we start all over again! (wink)

Routing

Camel is particular strong as a light-weight and agile routing and mediation framework. In this part we will introduce the routing concept and how we can introduce this into our solution.
Looking back at the figure from the Introduction page we want to implement this routing. Camel has support for expressing this routing logic using Java as a DSL (Domain Specific Language). In fact Camel also has DSL for XML and Scala. In this part we use the Java DSL as its the most powerful and all developers know Java. Later we will introduce the XML version that is very well integrated with Spring.

...