在我的Camel Route中,当Exception命中onException
处理程序时,我需要向JMS发送消息。为了加快主路由,我尝试通过Wiretap
我尝试使用这样的东西:
onException().handled(true).logHandled(true)
.wiretap("seda:another_queue").end();
...
from("seda:another_queue?concurrentConsumers=5")
.to("jms:queue_for_my_exception_messages");
是否有必要使用Wiretap,或者我可以只使用SEDA这样的队列:
onException().handled(true).logHandled(true)
.to("seda:another_queue").end();
...
from("seda:another_queue?concurrentConsumers=5")
.to("jms:queue_for_my_exception_messages");