请求处理程序重试建议 |服务激活器



我想阻止我的服务激活器的重试,以防引发任何异常。

以下是我的配置,

<http:inbound-gateway id="inboundGW"
        request-channel="getCustInfo" supported-methods="GET"
        error-channel="errorHandlerRouterChannel" 
        path="/Messages/{cust}" reply-channel="msgRetrival">
        <http:header name="cust" expression="#pathVariables.cust" />
    </http:inbound-gateway>
<int:service-activator input-channel="getCustInfo"
    output-channel="msgRetrival" ref="createService" method="processCustInfo">
    <int:request-handler-advice-chain>
    <ref bean="retryWithBackoffAdviceSession"></ref>
    </int:request-handler-advice-chain>
</int:service-activator>
<bean id="retryWithBackoffAdviceSession" class="org.springframework.integration.handler.advice.RequestHandlerRetryAdvice">
            <property name="retryTemplate">
                <bean class="org.springframework.retry.support.RetryTemplate">
                      <property name="retryPolicy">
                        <bean class="org.springframework.retry.policy.SimpleRetryPolicy">
                            <property name="maxAttempts" value="1" />
                        </bean>
                    </property>
                </bean>
            </property>
            <property name="recoveryCallback">
                <bean class="org.springframework.integration.handler.advice.ErrorMessageSendingRecoverer">
                    <constructor-arg ref="errorHandlerRouterChannel"/>
                </bean>
            </property>
</bean>

从我的服务激活器引发的异常未被 http:入站网关中指定的错误通道捕获

Spring 集成配置文件在部署描述符中加载了两次。修复此问题后,问题已解决。

你的问题不清楚。

如果要在重试用尽后引发异常,请删除recoveryCallback

最新更新