我想拆分交换邮件正文(它的MyCustomClass对象列表),逐个处理它们,然后将所有交换聚合在一起。拆分是正常的,逐个处理也没关系,但我无法弄清楚如何聚合它们。
from("mysource")
.unmarshal(new ListJacksonDataFormat(MyClass.class))
.split().body()
.process(new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
// process MyClass item
exchange.getIn().setBody(processedItem);
}
})
.to("destinationForProcessedItem")
.aggregate(new GroupedExchangeAggregationStrategy()) <== Seems like problem is here
.process(new Processor() {
// handle result of aggregation
})
我不需要复杂的聚合,只需收集拆分的Exchange列表并在最终处理器中处理它们。
答案 0 :(得分:0)
像这样写
.aggregate(new AggregationStrategy() {
@Override
public Exchange aggregate(Exchange exchange, Exchange exchange1) {
//logic for aggregation using exchnage and exchange1
}
})
答案 1 :(得分:0)
在拆分器中使用内置聚合器,请参阅标题为仅使用拆分器的示例的部分中的组合消息处理器EIP模式:http://camel.apache.org/composed-message-processor.html。