Spring与AMQP集成:在错误通道上获取原始消息的自定义标头

时间:2015-01-09 01:26:25

标签: error-handling spring-integration spring-amqp

在我的项目中使用Spring Integration与RabbitMQ我遇到了问题。 该项目包括从队列接收消息,跟踪传入消息,使用服务激活器处理消息,以及跟踪响应或服务激活器抛出的异常。 以下是示例配置:

<!-- inbound-gateway -->
<int-amqp:inbound-gateway id="inboundGateway"
         request-channel="gatewayRequestChannel"
         queue-names="myQueue"
         connection-factory="rabbitMQConnectionFactory"
         reply-channel="gatewayResponseChannel"
         error-channel="gatewayErrorChannel"
         error-handler="rabbitMQErrorHandler"
         mapped-request-headers="traceId"
         mapped-reply-headers="traceId" />

<!-- section to dispatch incoming messages to trace and execute service-activator -->
<int:publish-subscribe-channel id="gatewayRequestChannel" />
<int:bridge input-channel="gatewayRequestChannel" output-channel="traceChannel"/>
<int:bridge input-channel="gatewayRequestChannel" output-channel="serviceActivatorInputChannel"/>

<!-- the trace channel-->
<int:logging-channel-adapter id="traceChannel" 
    expression="headers['traceId'] + '= [Headers=' + headers + ', Payload=' + payload+']'" logger-name="my.logger" level="DEBUG" />

<!-- service activator which may throw an exception -->
<int:service-activator ref="myBean" method="myMethod" input-channel="serviceActivatorInputChannel" output-channel="serviceActivatorOutputChannel"/>

<!-- section to dispatch output-messages from service-activator to trace them and return them to the gateway -->
<int:publish-subscribe-channel id="serviceActivatorOutputChannel" />
<int:bridge input-channel="serviceActivatorOutputChannel"
    output-channel="traceChannel" />
<int:bridge input-channel="serviceActivatorOutputChannel"
    output-channel="gatewayResponseChannel" />

<!-- section to dispatch exceptions from service-activator to trace them and return them to the gateway -->
<int:bridge input-channel="gatewayErrorChannel"
    output-channel="traceChannel" />
<int:bridge input-channel="gatewayErrorChannel"
    output-channel="gatewayResponseChannel" />

我简化了代码以适应我的解释。我们的想法是跟踪进出服务激活器的输入和输出/错误消息。为此,我使用名为 traceId 的邮件标题。此标识符用作相关标识符,以便能够将请求消息与其响应相关联(这两个消息共享相同的 traceId 值)。

当服务激活器没有抛出异常时,一切正常。 但是当抛出异常时,似乎网关会生成一条新消息,而没有我原来的 traceId 标头。

稍微了解网关代码,我在类 org.springframework.integration.gateway.MessagingGatewaySupport 中找到以下代码:

private Object doSendAndReceive(Object object, boolean shouldConvert) {
...
    if (error != null) {
                if (this.errorChannel != null) {
                    Message<?> errorMessage = new ErrorMessage(error);
                    Message<?> errorFlowReply = null;
                    try {
                        errorFlowReply = this.messagingTemplate.sendAndReceive(this.errorChannel, errorMessage);
                    }
...
}

似乎在发生异常时,会创建一条新消息,并将异常消息作为有效负载发送到网关的errorChannel。这是我松开自定义标题的地方。

当发生异常时,有没有办法保留我的自定义标头? (也许有一种方法来配置它,我可能会错过它...)。或许我没有以正确的方式实施我的流程。如果是这种情况,欢迎提出任何意见或建议。

顺便说一句,我使用的是spring-integration-core artifact的4.0.3.RELEASE版本。

感谢您的回答

编辑:正如Gary Russel所说,这个例子缺少以下puslish / subscribe队列配置

<int:publish-subscribe-channel id="gatewayErrorChannel"/>

1 个答案:

答案 0 :(得分:2)

error-channel上的邮件是ErrorMessage。它有两个属性:cause - 原始异常和failedMessage - 失败时的消息。 ErrorMessage未获得failedMessage标题。

您无法在没有额外工作的情况下将ErrorMessage发送回网关。

通常,错误流程会在返回响应之前对错误进行一些分析。

如果要恢复某些自定义标头,则需要增加错误流的标头。

这样的东西
<int:header-enricher ...>
    <int:header name="traceId" expression="payload.failedMessage.headers.traceId" />
</int:header-enricher>

此外,您的配置有点奇怪,因为gatewayErrorChannel上有2个订阅者。除非它是<publish-subscribe-channel/>,否则这些消费者将得到替代消息;看起来你希望他们都能得到它,所以你需要正确地声明频道。