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.
http://www.springsource.org
Apache 2.0
SpringSource
Dave Syer
文件下载
文件名 操作
spring-retry-1.2.2.RELEASE.jar 下载
spring-retry-1.2.2.RELEASE.pom 下载
spring-retry-1.2.2.RELEASE-sources.jar 下载
Apache Maven
<dependency>
  <groupId>org.springframework.retry</groupId>
  <artifactId>spring-retry</artifactId>
  <version>1.2.2.RELEASE</version>
</dependency>
Gradle Groovy
implementation 'org.springframework.retry:spring-retry:1.2.2.RELEASE'
Gradle Kotlin
implementation("org.springframework.retry:spring-retry:1.2.2.RELEASE")
Scala SBT
libraryDependencies += "org.springframework.retry" % "spring-retry" % "1.2.2.RELEASE"
Groovy Grape
@Grapes(
  @Grab(group='org.springframework.retry', module='spring-retry', version='1.2.2.RELEASE')
)
Apache Ivy
<dependency org="org.springframework.retry" name="spring-retry" rev="1.2.2.RELEASE" />
Leiningen
[org.springframework.retry/spring-retry "1.2.2.RELEASE"]
Apache Buildr
'org.springframework.retry:spring-retry:jar:1.2.2.RELEASE'