使用RetryTemplate优雅的重试

在springboot中,可以引入RetryTemplate的start包快速方便的使用。spring的项目就没那么方便了,这里针对spring项目对RetryTemplate做了简单的封装,抽象化处理。使得通用性更强。

        <dependency>
            <groupId>org.springframework.retry</groupId>
            <artifactId>spring-retry</artifactId>
            <version>1.2.2.RELEASE</version>
        </dependency>
package com.smy.tts.util;

import lombok.extern.slf4j.Slf4j;
import org.springframework.retry.RecoveryCallback;
import org.springframework.retry.RetryCallback;
import org.springframework.retry.RetryContext;
import org.springframework.retry.policy.SimpleRetryPolicy;
import org.springframework.retry.support.RetryTemplate;
import org.springframework.stereotype.Component;
import java.util.concurrent.Callable;

/**
 * 重试次数工具类
 *
 * @author youlu
 * @ClassName RetryUtil
 * @Date 2022/10/14 17:48
 * @Version V1.0
 **/
@Slf4j
@Component
public class RetryUtil {
    /**
     *功能描述
     * @author youlu
     * @date 2022/10/17 10:28
     * @param retryCount  重试次数
     * @param action 重试的方法
     * @param desc    日志描述(用于打印成功or失败的日志)
     * @return V
     */
    public <V> V doRetry(int retryCount, Callable<V> action, String desc) {
        RetryTemplate oRetryTemplate = new RetryTemplate();
        SimpleRetryPolicy oRetryPolicy = new SimpleRetryPolicy();
        oRetryPolicy.setMaxAttempts(retryCount);// 重试次数
        oRetryTemplate.setRetryPolicy(oRetryPolicy);
        try {
            // obj为doWithRetry的返回结果,可以为任意类型
            V obj = oRetryTemplate.execute(new RetryCallback<V, Exception>() {
                @Override
                public V doWithRetry(RetryContext context) throws Exception {// 开始重试
                    V v = action.call();
                    //log.info("{}成功", desc);
                    return v;
                }
            }, new RecoveryCallback<V>() {
                @Override
                public V recover(RetryContext context) throws Exception { // 重试多次后都失败了,可以考虑序列化至硬盘,发消息提醒...
                    log.error("{}重试:{}次失败,原因e:{}!", desc, retryCount, context.getLastThrowable());
                    return null;
                }
            });
            return obj;
        } catch (Exception e) {
            log.error("执行{}出现异常e:{}", desc, e);
        }
        return null;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值