December 2013
Intermediate to advanced
424 pages
9h 7m
English
This recipe will show you how you how to split a message into individual fragments, process each fragment individually, and re-aggregate the processed exchanges back into a single exchange. In EIP terms, this is known as a Composed Message Processor, and is made up of a combination of a Splitter and an Aggregator.

Java code for this recipe is located in the org.camelcookbook.splitjoin.splitaggregate package. The Spring XML examples are located under src/main/resources/META-INF/spring and prefixed with splitAggregate.
In order to split and aggregate (join) a message, ...
Read now
Unlock full access