This example uses the Camel Endpoint DSL to configure Camel endpoints using a type-safe Java endpoint DSL (e.g. fluent builder style).
This example shows how to work with splitter and aggregator to implement a Cafe demo.
First it uses the splitter to dispatch the order, then sends the orders to barista by checking if the coffee is hot or cold. When the coffee is ready, we use an aggregator to gather the drinks for waiter to deliver.
To run the example execute
$ mvn camel:run
You can see the routing rules by looking at the java code in src/main/java
.
To stop the example hit ctrl+c
There are unit tests implemented, which can be run with the following command:
$ mvn test
If you hit any problem using Camel or have some feedback, then please let us know.
We also love contributors, so get involved :-)
The Camel riders!