s

spring-retry

Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour 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
Files download
File Operation
spring-retry-1.2.5.RELEASE.jar download
spring-retry-1.2.5.RELEASE.pom download
spring-retry-1.2.5.RELEASE-sources.jar download
Apache Maven
<dependency>
  <groupId>org.springframework.retry</groupId>
  <artifactId>spring-retry</artifactId>
  <version>1.2.5.RELEASE</version>
</dependency>
Gradle Groovy
implementation 'org.springframework.retry:spring-retry:1.2.5.RELEASE'
Gradle Kotlin
implementation("org.springframework.retry:spring-retry:1.2.5.RELEASE")
Scala SBT
libraryDependencies += "org.springframework.retry" % "spring-retry" % "1.2.5.RELEASE"
Groovy Grape
@Grapes(
  @Grab(group='org.springframework.retry', module='spring-retry', version='1.2.5.RELEASE')
)
Apache Ivy
<dependency org="org.springframework.retry" name="spring-retry" rev="1.2.5.RELEASE" />
Leiningen
[org.springframework.retry/spring-retry "1.2.5.RELEASE"]
Apache Buildr
'org.springframework.retry:spring-retry:jar:1.2.5.RELEASE'