SpringRetry接口重试机制

添加依赖

		<dependency>
            <groupId>org.springframework.retry</groupId>
            <artifactId>spring-retry</artifactId>
        </dependency>

启动类添加@EnableRetry

SpringRetry接口重试机制_第1张图片

重试代码实现

@Slf4j
@Component
public class RetryComponent {

    @Retryable(
//            value = {
                IllegalArgumentException.class,
                ArrayIndexOutOfBoundsException.class
//            },     // 指定重试的异常,不是这个则不重试
            exclude = NullPointerException.class,   // 指定不去重试的异常,抛出的这个异常不会进行重试
            maxAttempts = 5,         // 重试的总次数
            backoff = @Backoff(
                    delay = 1000L,
                    multiplier = 2
            )   // 重试间隔为1秒,后续的重试间隔时间为1/2/4/8秒
    )
    public boolean sendSmsWithRetry() {
        log.info("当前时间 Time={}", LocalDateTime.now());
        return SMSUtilsRetry.sendSMS();
    }

    // 达到最大重试次数,或者抛出一个没有被设置(进行重试)的异常
    // 可以作为方法的最终兜底处理,如果不处理,也行随意
    @Recover
    public boolean recover() {
        GraceException.display(ResponseStatusEnum.SYSTEM_SMS_FALLBACK_ERROR);
        return false;
    }

}

你可能感兴趣的:(Java,java,spring,开发语言)