gpt4 book ai didi

java - 如何为每次重试时列表减少的方法组织 Spring Integration 重试?

转载 作者:行者123 更新时间:2023-11-30 08:42:02 25 4
gpt4 key购买 nike

有以下带有 Retry 的 Spring Integration 配置:

<int:chain input-channel="sdCreationChannel" output-channel="debugLogger">
<int:poller fixed-delay="500" />
<int:filter ref="sdIntegrationExistingRequestSentFilter" method="filter"/>
<int:service-activator ref="sdCreationServiceImpl" method="processMessage">
<int:request-handler-advice-chain>
<ref bean="retryAdvice"/>
</int:request-handler-advice-chain>
</int:service-activator>
</int:chain>

<bean id="retryAdvice" class="org.springframework.integration.handler.advice.RequestHandlerRetryAdvice" >
<property name="retryTemplate">
<bean class="org.springframework.retry.support.RetryTemplate">
<property name="backOffPolicy">
<bean class="org.springframework.retry.backoff.ExponentialBackOffPolicy">
<property name="initialInterval" value="${integration.retry.initial.delay}"/>
<property name="multiplier" value="${integration.retry.backoff.multiplier}"/>
</bean>
</property>
<property name="retryPolicy">
<bean class="org.springframework.retry.policy.SimpleRetryPolicy">
<property name="maxAttempts" value="${integration.retry.max.attempts}" />
</bean>
</property>
</bean>
</property>
</bean>

简化后的Java代码如下:

@Component("sdCreationServiceImpl")
public class SDCreationServiceImpl implements SDCreationService {

@Autowired
private NotifySD notifySD;
@Override
public void processMessage(IntegrationPayload integrationPayload) {
List<ConfirmationCode> sdConfCodes = findCodesFromPayLoad(integrationPayload);
notifySD.activateConfirmationCodes(sdConfCodes);

}

重试这段代码的问题在于,List sdConfCodes 可以在每次重试时被部分处理,因此每次我们需要发送以处理较少数量的元素。组织此代码的最佳方式是什么?

按照 Artem Bilan 的建议(谢谢!),我在 SDCreationServiceImpl 中创建了带有变量列表的第二个方法,即 activateConfirmationCodes,然后在 XML 规范中将此方法指向 sdCreationServiceImpl 的方法。

@Component("sdCreationServiceImpl")
public class SDCreationServiceImpl implements SDCreationService {
@Autowired
private NotifySD notifySD;
List<ConfirmationCode> sdConfCodes = new ArrayList<ConfirmationCode()>;
@Override
public void processMessage(IntegrationPayload integrationPayload) {
sdConfCodes = findCodesFromPayLoad(integrationPayload);
}

public void activateConfirmationCodes()
{
notifySD.activateConfirmationCodes(sdConfCodes);
}

然后 service-activator 的 XML 规范如下:

<int:service-activator ref="sdCreationServiceImpl" method="activateConfirmationCodes">
<int:request-handler-advice-chain>
<ref bean="retryAdvice"/>
</int:request-handler-advice-chain>
</int:service-activator>

是的,此方法 activateConfirmationCodes 在 Retry 中被调用,但第一个方法 processMessage 根本没有被调用。 是否可以指定一种方法在第一次尝试时调用,另一种方法用于重试?其次,通过这种设计,列表变成了单例,这会给多线程带来问题,对吗?此列表是否可以仅针对特定消息与 bean 相关联?

最佳答案

从大的角度来看,你的问题在哪里还不清楚。从另一方面让我分享一些我的想法,也许我会猜到你的目标。

拥有List<ConfirmationCode>作为payload允许我们随时修改它。因此,假设我们的列表为 10元素。在第一次尝试中,我们处理了其中的 3 个。第四个失败了。我们必须去重试抛出一些适当的异常。但是我们回到重试感知方法的开头,所以使用相同的参数。如果我们从集合中删除那些成功的项目,下一次重试迭代将根本不会处理它们。

从一方面你可以实现区分findCodesFromPayLoad()服务与activateConfirmationCodes() , 为最后一个应用重试。

从另一边,您可以在 activateConfirmationCodes() 中将项目标记为已处理, 所以下一个 findCodesFromPayLoad(integrationPayload)不会返回。

换句话说,有足够多的方法可以在不更改消息的情况下修改集合。

关于java - 如何为每次重试时列表减少的方法组织 Spring Integration 重试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34730074/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com