在骆驼路由器中,我有以下路由。
from("jetty:http://localhost:9092?matchOnUriPrefix=true").
to("http://server:9093/service1?bridgeEndpoint=true&throwExceptionOnFailure=false")
.to("http://server:9094/service2?bridgeEndpoint=true&throwExceptionOnFailure=false")
.to("log:output")
上述路由工作正常。
但我的要求是在发送到 service2 之前修改 service1 的输出。就像我得到
<x>abc</x>
我必须将其转换为
<y><x>abc</x></y>
我尝试使用处理器,但我将 service2 的 exchange.getOut() 设为 null,而实际上它返回了 xml。
如果可能的话,有人可以帮助我吗?如果问题不清楚,请告诉我。