Spring Integration 4.1.6如何检查自定义标头属性是否在消息上,如果没有添加它

时间:2016-04-13 15:12:03

标签: spring integration

我正在使用Spring Integration 4.1.6 jms消息流,它有两个队列,主队列和异常队列。从主队列读取消息,处理它,如果进程不成功,则将消息推送到异常队列。我有轮询器从异常队列中读取消息并放回主队列。我需要这个有条件的进程,如果消息从异常队列移动到主队列,比如3次,然后忽略消息。为此,我打算将属性添加到消息头“Retry_Count”中,并在将消息从错误队列推送到主队列或丢弃消息时进行检查。 1.如何检查'Retry_Count'属性是否在消息上? 2.如果'Retry_Count'属性不在消息上,则添加初始计数,例如1并路由到主队列 3.如果“Retry_Count”属性为on message,则检查重试次数是否小于或等于max retry number, 4.如果'Retry_Count'属性值小于最大计数,则增加计数并路由到主队列。 5.如果'Retry_Count'属性值等于最大计数,则路由到丢弃队列。

注意poller配置正在通过从异常队列中读取消息并路由到主队列来工作。

1 个答案:

答案 0 :(得分:0)

通过一些阅读和配置,我能够解决我面临的问题。我使用sprint集成对象来设置重试属性而不是JMS消息。这是配置

    <si-jms:inbound-channel-adapter
        channel="BackoutQueueChannel" connection-factory="queueConnectionFactory"
        destination="RegistrationBackoutQueue">
        <si:poller cron="0 0/2 * * * *"
            max-messages-per-poll="2">
            <si:advice-chain>
                <ref bean="PollSkipAdvice"/>
            </si:advice-chain>
        </si:poller>
    </si-jms:inbound-channel-adapter>
    <si:chain id="processBackoutQueue" input-channel="BackoutQueueChannel" output-channel="RecipientChannel" >
        <si:header-enricher>
            <si:header name="Event_Retry_Count" expression="headers.get('Event_Retry_Count') == null ? 2 : headers.get('Event_Retry_Count')+1" overwrite="true"/>
        </si:header-enricher>
        <si:filter id="checkEventEligibleForRetry" expression="@RegistrationEventPoller.isEventEligibleForRetry(payload, headers.get('Event_Retry_Count'))" discard-channel="poisonChannel"/>
    </si:chain>