Camel - 如何在异常时停止路由执行?

时间:2015-09-03 15:08:31

标签: apache-camel

有什么办法可以在捕获异常时停止路由执行(显示日志消息后)?

        <doTry>
            <process ref="messageProcessor"/>
            <doCatch>
                <exception>java.lang.IllegalArgumentException</exception>
                <log message="some message related to the exception" />
            </doCatch>
        </doTry>

请提供一种在Spring DSL中实现此目的的方法。我已经尝试过&lt;停止/&GT;但是这并没有显示日志信息。

4 个答案:

答案 0 :(得分:3)

在doCatch中添加了一个停止Camel上下文的过程。

        <doTry>
            <process ref="messageProcessor"/>
            <doCatch>
                <exception>java.lang.IllegalArgumentException</exception>
                <handled>
                    <constant>true</constant>
                </handled>
                <setHeader headerName="exceptionStackTrace">
                    <simple>${exception.stacktrace}</simple>
                </setHeader>
                <process ref="mandatoryParameterIsNull"/>           
            </doCatch>
        </doTry>

处理器:

@Component
public class MandatoryParameterIsNull implements Processor{

Logger log = Logger.getLogger(MandatoryParameterIsNull.class);

@Override
public void process(Exchange exchange) throws Exception {

    if (log.isDebugEnabled()) {
        log.debug("Some parameter is mandatory");
        log.debug(exchange.getIn().getHeader("exceptionStackTrace"));
    }
    exchange.getContext().getShutdownStrategy().setLogInflightExchangesOnTimeout(false);
    exchange.getContext().getShutdownStrategy().setTimeout(60);
    exchange.getContext().stop();
}
}

答案 1 :(得分:3)

有很多方法可以解决这个问题。除了接受的答案,您可能还想使用以下其中一项:

onException(SomeException.class)
.log("Uh oh...")
.stop()
你的DSL中的

或:

exchange.setProperty(Exchange.ROUTE_STOP, Boolean.TRUE);

在您的处理器()

在此处查看有关此主题的官方文档:http://camel.apache.org/intercept.html

答案 2 :(得分:0)

如果您创建OnException路由? 像这样:

onException(Exception.class)
        .log("YOUR LOG EXCEPTION");

from("direct:start")...

答案 3 :(得分:0)

停止路由当前执行,但路由仍在监听 route.onException(Throwable.class).process(ThrowableProcessor.NAME).handled(true);