介绍
Spring Retry提供了自动重新调用失败操作的能力,这对于暂时性的错误情况(例如一时的网络故障)很有帮助。
在本教程中,我们将看到Spring Retry的各种使用方法:annotations, RetryTemplate and callbacks.
添加maven依赖
在pom.xml中添加如下依赖
<dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> <version>1.2.5.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>5.2.8.RELEASE</version> </dependency>