Apache camel 窃听使用

Apache camel wiretap usage

如果可以使用

,谁能给我一个提示吗?
.wireTap()

喜欢

.bean(Test.class, "testMethod(Exchange)"); 

我正在尝试创建 route,它将通过立即发送 processing… 消息来处理请求,同时调用 testMethod 来处理订单

测试用例:

from("timer:test")
            //.to("log:test")
            .bean(Test.class, "testMethod2()")
            .bean(Test.class, "testMethod(Exchange)");

显示 testMethod 正在等待 testMethod2 结束。我想 运行 这两个方法异步

您可以在并行模式下使用多播eip

from("timer:test")
    .multicast().parallelProcessing().
            .bean(Test.class, "testMethod2()")
            .bean(Test.class, "testMethod(Exchange)")
    .end();