我使用CAMEL聚合来自两个来源的响应,一个是xml,另一个是json。最初我已经存根这些回复,我从文件中获取它们。 目标是汇总来自两个来源的回复。
我的聚合器路线看起来像这样
from("direct:fetchProfile")
.multicast(new ProfileAggregationStrategy()).stopOnException()
.enrich("direct:xmlProfile")
.enrich("direct:jsonProfile")
.end();
我的直接:xmlProfile"路线看起来像 -
from("direct:xmlProfile")
.process(new Processor(){
@Override
public void process(Exchange exchange) throws Exception {
String filename = "target/classes/xml/customerDetails.xml";
InputStream fileStream = new FileInputStream(filename);
exchange.getIn().setBody(fileStream);
}
})
.split(body().tokenizeXML("attributes", null))
.unmarshal(jaxbDataFormat)
.process(new Processor(){
@Override
public void process(Exchange exchange) throws Exception {
Profile legacyProfile = exchange.getIn().getBody(Profile.class);
// some more processing here
exchange.getIn().setBody(legacyProfile);
}
});
在上面的路线中,我正在从文件中读取xml,然后使用jaxb转换器将感兴趣的元素映射到由' Profile'表示的类中。在调用此路由后,CAMEL调用ProfileAggregationStrategy。这个代码是 -
public class ProfileAggregationStrategy implements AggregationStrategy{
@Override
public Exchange aggregate(Exchange oldExchange, Exchange newExchange) {
// this is the problematic line
Profile newProfile = newExchange.getIn().getBody(Profile.class);
if (oldExchange == null){
return newExchange;
} else {
Profile oldProfile = oldExchange.getIn().getBody(Profile.class);
// code to copy merge oldProfile with newProfile
return oldExchange;
}
}
}
问题在于标记为'有问题的行'。即使在路线的最后阶段'直接:xmlProfile'我已经明确地将一个对象放入交换的Body中,ProfileAggregationStrategy中的newExchange仍然显示Body的类型为iostream。
答案 0 :(得分:1)
阅读有关分割器eip的文档。
由于拆分器的输出是输入,除非您为拆分器指定聚合策略,您可以在其中决定输出应该是什么。例如,如果您想使用最后一个splitted元素,那么您可以使用UseLastestAggregrationStrategy
。