Apache Camel: errorHandler vs onException?
2022-09-02 09:54:21
有什么区别:
<camel:errorHandler id="deadLetterErrorHandler" type="DeadLetterChannel"
deadLetterUri="log:dead">
<camel:camelContext errorHandlerRef="deadLetterErrorHandler">
...
</camel:camelContext>
和:
<onException>
...
</onException>
根据本文,将它们同时使用是一种“强大的组合”。怎么会这样?他们各自承担什么角色,他们如何相互补充?