1. 简介
spring retry是spring生态系统中的一个重要组件,它提供了自动重试失败操作的能力。在分布式系统中,由于网络抖动、服务暂时不可用等临时性故障,重试机制显得尤为重要。本文将详细介绍如何在 springboot 3 应用中集成和使用 spring retry。
2. 环境准备
首先在 springboot 3 项目中添加必要的依赖:
<dependency>
<groupid>org.springframework.retry</groupid>
<artifactid>spring-retry</artifactid>
<version>2.0.5</version>
</dependency>
<dependency>
<groupid>org.springframework</groupid>
<artifactid>spring-aspects</artifactid>
<version>6.1.13</version>
</dependency>在启动类或配置类上添加 @enableretry 注解以启用重试功能:
@springbootapplication
@enableretry
public class application {
public static void main(string[] args) {
springapplication.run(application.class, args);
}
}3. 使用方式
3.1 注解方式 基础使用
最简单的使用方式是通过 @retryable 注解:
@service
public class userservice {
@retryable
public void riskyoperation() {
// 可能失败的操作
}
}自定义重试策略
可以通过 @retryable 注解的参数来自定义重试行为:
@service
@slf4j
public class emailserviceimpl implements iemailservice {
@resource
private javamailsender mailsender;
@value("${spring.mail.username}")
private string from;
/**
* 发送简单文本邮件
*
* @param to
* @param subject
* @param text
*/
@override
@retryable(retryfor = mailsendexception.class, maxattempts = 3, backoff = @backoff(delay = 1000))
public void sendsimpleemail(string to, string subject, string text) {
try {
simplemailmessage message = new simplemailmessage();
message.setfrom(from);
message.setto(to);
message.setsubject(subject);
message.settext(text);
mailsender.send(message);
log.info("simple email sent successfully to: {}", to);
} catch (exception e) {
log.error("failed to send simple email", e);
throw new mailsendexception("failed to send email", e);
}
}
}当执行发生指定异常,将会尝试进行重试,一旦达到最大尝试次数,但仍有异常发生,就会抛出 exhaustedretryexception。重试最多可进行三次,两次重试之间的延迟时间默认为一秒。
失败恢复机制
使用 @recover 注解定义重试失败后的恢复方法:
/**
* 发送简单文本邮件
*
* @param to
* @param subject
* @param text
*/
@override
@retryable(retryfor = mailsendexception.class, // 指定异常类型
maxattempts = 3, // 最大重试次数
backoff = @backoff(delay = 1000) // 指定退避策略,例如延迟时间
)
public void sendsimpleemail(string to, string subject, string text) {
try {
simplemailmessage message = new simplemailmessage();
message.setfrom(from);
message.setto(to);
message.setsubject(subject);
message.settext(text);
mailsender.send(message);
log.info("simple email sent successfully to: {}", to);
} catch (exception e) {
log.error("failed to send simple email", e.getmessage());
throw new mailsendexception("failed to send email", e);
}
}
@recover
public void recover(mailsendexception e, string param) {
// 处理最终失败的情况
log.error("final recovery : {}", param);
}重试和失败恢复效果

注意事项
注意@recover 失效的情况:
- @recover 方法的参数类型与实际异常不匹配;
- @recover 方法的返回类型与 @retryable 方法不一致;
- @recover 方法的其他参数与 @retryable 方法参数不匹配。
3.2 编程式使用
除了注解方式,spring retry 还提供了 retrytemplate 用于编程式重试:
@configuration
public class retryconfig {
@bean
public retrytemplate retrytemplate() {
retrytemplate template = new retrytemplate();
// 配置重试策略
simpleretrypolicy retrypolicy = new simpleretrypolicy();
retrypolicy.setmaxattempts(3);
// 配置退避策略
fixedbackoffpolicy backoffpolicy = new fixedbackoffpolicy();
backoffpolicy.setbackoffperiod(1000l);
template.setretrypolicy(retrypolicy);
template.setbackoffpolicy(backoffpolicy);
return template;
}
}使用retrytemplate:
@service
public class userservice {
@autowired
private retrytemplate retrytemplate;
public void executewithretry() {
retrytemplate.execute(context -> {
// 需要重试的业务逻辑
return null;
});
}
}3.3 监听重试过程
通过实现retrylistener接口,可以监听重试的整个生命周期:
public class customretrylistener extends retrylistenersupport {
@override
public <t, e extends throwable> void onerror(retrycontext context,
retrycallback<t, e> callback, throwable throwable) {
// 记录错误日志
log.error("retry error occurred", throwable);
}
@override
public <t, e extends throwable> void close(retrycontext context,
retrycallback<t, e> callback, throwable throwable) {
// 重试结束时的处理
log.info("retry completed");
}
}将监听器注册到retrytemplate:
@configuration
public class retryconfig {
@bean
public retrytemplate retrytemplate() {
retrytemplate template = new retrytemplate();
// ... 其他配置 ...
template.registerlistener(new customretrylistener());
return template;
}
}监听重试效果

4. 最佳实践
- 明确重试场景:只对临时性故障使用重试机制,对于业务错误或永久性故障应直接失败。
- 设置合理的重试次数:通常3-5次即可,过多的重试可能会加重系统负担。
- 使用退避策略:建议使用指数退避策略(exponentialbackoffpolicy),避免立即重试对系统造成冲击。
- 添加监控和日志:通过retrylistener记录重试情况,便于问题排查。
- 设置超时时间:避免重试过程持续时间过长。
5. 总结
spring retry为spring应用提供了强大而灵活的重试机制,既可以通过注解优雅地实现重试,也可以使用retrytemplate进行更细粒度的控制。在实际应用中,合理使用重试机制可以提高系统的健壮性和可用性。
需要注意的是,重试机制并非万能药,在使用时要根据具体场景选择合适的重试策略,并做好监控和告警,以便及时发现和处理问题。
到此这篇关于springboot3应用中集成和使用spring retry的实践记录的文章就介绍到这了,更多相关springboot3 spring retry内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!
发表评论