Exception 从一个camel路由继续异常,并在另一个camel路由中处理它

Exception 从一个camel路由继续异常,并在另一个camel路由中处理它,exception,apache-camel,Exception,Apache Camel,我有一个apachecamel路由,它调用restlet组件,并希望使用异常处理程序中的重新交付机制,该异常处理程序在每次失败时执行一些处理,以更新我的数据库记录,这应该在通用路由上完成。所以,我尝试在一个路由中继续异常,并通过direct组件在另一个路由中处理相同的异常。但例外情况并不是继续使用通用路线 第一条路线: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.

我有一个apachecamel路由,它调用restlet组件,并希望使用异常处理程序中的重新交付机制,该异常处理程序在每次失败时执行一些处理,以更新我的数据库记录,这应该在通用路由上完成。所以,我尝试在一个路由中继续异常,并通过direct组件在另一个路由中处理相同的异常。但例外情况并不是继续使用通用路线

第一条路线:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:cxf="http://camel.apache.org/schema/cxf"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="  http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans.xsd   http://camel.apache.org/schema/spring       http://camel.apache.org/schema/spring/camel-spring.xsd  http://camel.apache.org/schema/cxf    http://camel.apache.org/schema/cxf/camel-cxf.xsd">
    <!-- CXF Rest Endpoint Declaration -->
    <cxf:rsServer address="http://localhost:9092/rest/corp"
        id="FetchCDFRestRequest" serviceClass="com.tcl.Service.Service" />

    <bean class="com.tcl.ExceptionOccurredRefProcessor" id="exProc" />

    <bean class="org.apache.camel.builder.DeadLetterChannelBuilder"
        id="DLCErrorHandler">
        <property name="deadLetterUri"
            value="activemq:queue:DMS.FAILURES.DLQ" />
        <property name="redeliveryPolicy" ref="redeliveryPolicy" />
    </bean>
    <bean class="org.apache.camel.processor.RedeliveryPolicy"
        id="redeliveryPolicy">
        <property name="maximumRedeliveries"
            value="3" />
        <property name="maximumRedeliveryDelay" value="2000" />
        <property name="retryAttemptedLogLevel" value="WARN" />
    </bean>
    <camelContext id="Corp"
        xmlns="http://camel.apache.org/schema/spring">

        <errorHandler id="eh" onExceptionOccurredRef="exProc">
            <redeliveryPolicy id="redeliveryPolicy" />
        </errorHandler>

        <route id="MainRouteOppIDFolder" streamCache="true">
            <from id="_CreateOppIDFolder"
                uri="restlet:http://localhost:9092/rest/corp/createOppIDFolder?restletMethod=POST" />
            ----------
            <to uri="restlet:http://localhost:9902/CreateOppIDFolder?restletMethod=POST" />
            ------------    
            <onException id="_onException1" useOriginalMessage="true">
                <exception>java.lang.Exception</exception>
                <handled>
                    <simple>false</simple>
                </handled>
                <log id="_log1" message="Cont... ex >>>>> ${exception.message} "/>
                <to uri="direct:ExceptionHandle"/>
            </onException>
        </route>
    </camelContext>
</beans>

老实说:我看不出你的问题。

您的异常块不存在

<log id="_log1" message="Cont... ex >>>>> ${exception.message} "/>
<to uri="direct:ExceptionHandle"/>
所以一切正常。我是不是错过了什么

因评论而更新

只要第二条路由中没有异常发生,第二条路由的
onException
块就不会被调用。第二条路由通常接收并处理消息


您仍然可以使用
${exception}

访问消息上的异常信息,因为您已将日志语句显式添加到路由中,因此查看记录的内容将非常有用。否则,人们必须分析您的路由,以了解运行时可能发生的情况。@burki,请使用日志查找更新的查询。我已经处理了第二个路由中的异常,如何将第一个路由中发生的异常转移到第二个路由中,我已经处理了该异常。我真正需要的是,需要在单独的路径中处理异常和重新交付逻辑。现在我了解您的问题,我已经更新了我的答案

12:11:24.384 [Restlet-781390346] WARN  o.a.c.processor.DeadLetterChannel - Failed delivery for (MessageId: ID-DESKTOP-P2DBOO5-1580280046927-0-8 on ExchangeId: ID-DESKTOP-P2DBOO5-1580280046927-0-7).On delivery attempt: 0 caught: org.apache.camel.component.restlet.RestletOperationException: Restlet operation failed invoking http://localhost:9902/CreateOppIDFolder with statusCode: 500 /n responseBody:org.apache.cxf.interceptor.Fault: Could not send Message.
Caused by: java.net.ConnectException: ConnectException invoking http://172.16.18.113:7001/services/TCLDMSSFDCService/TCLDMSSFDCService: Connection timed out: connect
Caused by: java.net.ConnectException: Connection timed out: connect

12:11:24.392 [Restlet-781390346] INFO  MainRouteOppIDFolder - Cont... ex >>>>> Restlet operation failed invoking http://localhost:9902/CreateOppIDFolder with statusCode: 500 /n responseBody:org.apache.cxf.interceptor.Fault: Could not send Message.
Caused by: java.net.ConnectException: ConnectException invoking http://172.16.18.113:7001/services/TCLDMSSFDCService/TCLDMSSFDCService: Connection timed out: connect
Caused by: java.net.ConnectException: Connection timed out: connect

12:11:24.396 [Restlet-781390346] INFO  _route1 - Req>>>>> {
  "oppID" : "10268216",
  "salesOrganization" : "Commerical Finance",
  "salesVertical" : "CEQ",
  "productName" : "Construction Equipment Finance",
  "applicantName" : "SGS INFRASTRUCTURE",
  "docName" : null,
  "appNature" : null,
  "docType" : null,
  "base64Content" : null
}

12:11:24.405 [Restlet-781390346] ERROR o.a.c.processor.DeadLetterChannel - Failed delivery for (MessageId: ID-DESKTOP-P2DBOO5-1580280046927-0-8 on ExchangeId: ID-DESKTOP-P2DBOO5-1580280046927-0-7). Exhausted after delivery attempt: 1 caught: org.apache.camel.component.restlet.RestletOperationException: Restlet operation failed invoking http://localhost:9902/CreateOppIDFolder with statusCode: 500 /n responseBody:org.apache.cxf.interceptor.Fault: Could not send Message.
Caused by: java.net.ConnectException: ConnectException invoking http://172.16.18.113:7001/services/TCLDMSSFDCService/TCLDMSSFDCService: Connection timed out: connect
Caused by: java.net.ConnectException: Connection timed out: connect
. Processed by failure processor: FatalFallbackErrorHandler[Pipeline[[Channel[Log(MainRouteOppIDFolder)[Cont... ex >>>>> ${exception.message} ]], Channel[sendTo(direct://ExceptionHandle)], Channel[Log(MainRouteOppIDFolder)]]]]

Message History
RouteId              ProcessorId          Processor                                                                        Elapsed (ms)
[MainRouteOppIDFold] [MainRouteOppIDFold] [restlet://http://localhost:9092/rest/corp/createOppIDFolder?restletMethod=POST] [     21608]
[MainRouteOppIDFold] [_CreateOppIDFolder] [restlet:http://localhost:9902/CreateOppIDFolder?restletMethod=POST            ] [     21319]
[MainRouteOppIDFold] [_to2              ] [direct:ExceptionHandle                                                        ] [         1]
[_route1           ] [_log4             ] [log                                                                           ] [         1]

Stacktrace
org.apache.camel.component.restlet.RestletOperationException: Restlet operation failed invoking http://localhost:9902/CreateOppIDFolder with statusCode: 500 /n responseBody:org.apache.cxf.interceptor.Fault: Could not send Message.
Caused by: java.net.ConnectException: ConnectException invoking http://172.16.18.113:7001/services/TCLDMSSFDCService/TCLDMSSFDCService: Connection timed out: connect
Caused by: java.net.ConnectException: Connection timed out: connect```

**Any suggestions please?**

<log id="_log1" message="Cont... ex >>>>> ${exception.message} "/>
<to uri="direct:ExceptionHandle"/>
<log id="_log4" message="Req>>>>> ${body}"/>
Cont... ex >>>>> [error message]
Req>>>>> [message body]