我在Mule中有一个默认的catch异常,我正在尝试使用Mule表达式访问异常消息:#[exception]
这似乎不起作用,我猜我正在尝试访问错误的变量?我正在尝试使用logger记录它,并运行一个接收异常消息的自定义组件(作为字符串.)
谢谢,
解决方法
你可以这样做#[exception.causedBy]
<choice-exception-strategy> <catch-exception-strategy when="exception.causedBy(com.company.BusinessException)"> <!-- [1] --> <jms:outbound-endpoint queue="dead.letter"> <jms:transaction action="ALWAYS_JOIN" /> </jms:outbound-endpoint> </catch-exception-strategy> <rollback-exception-strategy when="exception.causedBy(com.company.NonBusinessException)"> <!-- [2] --> <logger level="ERROR" message="Payload failing: #[payload]"/> </rollback-exception-strategy> </choice-exception-strategy>
更多细节here