Java 重试机制解决消息发送失败进行重试

该文章展示了一个基于Java的RetryTemplate抽象类,用于实现重试机制。RetryTemplate通过模板方法设计模式,允许子类自定义业务执行代码并在失败时进行重试。默认重试次数为5次,每次重试之间有睡眠间隔。测试类展示了如何定制重试次数和睡眠时间,并在业务执行中模拟异常情况触发重试。
摘要由CSDN通过智能技术生成

1、主要是通过模板方式实现,基本是复制就可以使用

实现代码

@Slf4j
public abstract class RetryTemplate {

    private static final int DEFAULT_RETRY_COUNT = 5;

    /**
     * 重试次数
     */
    private int retryCount = DEFAULT_RETRY_COUNT;

    // 重试的睡眠时间
    private int sleepTime = 0;

    public int getSleepTime() {
        return sleepTime;
    }

    public RetryTemplate setSleepTime(int sleepTime) {
        if(sleepTime < 0) {
            throw new IllegalArgumentException("睡眠时间应等于或大于0");
        }

        this.sleepTime = sleepTime;
        return this;
    }

    public int getRetryCount() {
        return retryCount;
    }

    public RetryTemplate setRetryCount(int retryCount) {
        if (retryCount <= 0) {
            throw new IllegalArgumentException("重试时间应大于 0");
        }

        this.retryCount = retryCount;
        return this;
    }

    /**
     * 重试的业务执行代码
     * 失败时请抛出一个异常
     *
     * todo 确定返回的封装类,根据返回结果的状态来判定是否需要重试
     *
     * @return
     */
    protected abstract Object doBiz() throws Exception;


    public Object execute() throws InterruptedException {
        for (int i = 0; i < retryCount; i++) {
            try {
                return doBiz();
            } catch (Exception e) {
                log.error("业务执行出现异常,e: {}", e);
                Thread.sleep(sleepTime);
            }
        }

        return null;
    }
}

测试类

public class RetryTemplateTest {
    public static void main(String[] args) throws InterruptedException {
        Object ans = new RetryTemplate() {
            @Override
            protected Object doBiz() throws Exception {
                int temp = (int) (Math.random() * 10);
                System.out.println("temp="+temp);

                if (temp > 3) {
                    throw new Exception("generate value bigger then 3! need retry");
                }

                return temp;
            }
        }.setRetryCount(10).setSleepTime(10).execute();
        System.out.println("ans={}"+ans);
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值