我试图在全局 onException 中捕获我自己的异常。在捕获到 Jaxb 异常后,我抛出了我的异常。但是 CustomException 不会被 onException 捕获
onException(Exception.class)
.handled(true)
.log("Globally Caught CustomException")
.end();
from("start:direct")
.doTry()
.unmarshal(soapMessage)
.doCatch(JAXBException.class)
.log("Locally Caught JAXBException")
.throwException(new CustomException()
.endDoTry();
四季花海
噜噜哒
相关分类