s

spring-retry

Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based behaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exception, and with a fixed or exponential backoff.
https://www.springsource.org
Apache 2.0
SpringSource
Dave Syer
文件下载
文件名 操作
spring-retry-2.0.0.jar 下载
spring-retry-2.0.0.pom 下载
spring-retry-2.0.0-sources.jar 下载
Apache Maven
<dependency>
  <groupId>org.springframework.retry</groupId>
  <artifactId>spring-retry</artifactId>
  <version>2.0.0</version>
</dependency>
Gradle Groovy
implementation 'org.springframework.retry:spring-retry:2.0.0'
Gradle Kotlin
implementation("org.springframework.retry:spring-retry:2.0.0")
Scala SBT
libraryDependencies += "org.springframework.retry" % "spring-retry" % "2.0.0"
Groovy Grape
@Grapes(
  @Grab(group='org.springframework.retry', module='spring-retry', version='2.0.0')
)
Apache Ivy
<dependency org="org.springframework.retry" name="spring-retry" rev="2.0.0" />
Leiningen
[org.springframework.retry/spring-retry "2.0.0"]
Apache Buildr
'org.springframework.retry:spring-retry:jar:2.0.0'