组织ID: |
org.springframework.retry |
项目ID: |
spring-retry |
版本: |
1.2.4.RELEASE |
最后修改时间: |
2019-01-17 11:44:22 |
包类型: |
jar |
标题: |
Spring Retry |
描述: |
|
相关URL: |
http://www.springsource.org |
大小: |
126.15KB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
<version>1.2.4.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework.retry:spring-retry:1.2.4.RELEASE
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
<version>1.2.4.RELEASE</version>
<name>Spring Retry</name>
<description><![CDATA[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.
]]></description>
<url>http://www.springsource.org</url>
<organization>
<name>SpringSource</name>
<url>http://www.springsource.com</url>
</organization>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<packaging>jar</packaging>
<properties>
<maven.test.failure.ignore>true</maven.test.failure.ignore>
<spring.framework.version>4.3.22.RELEASE</spring.framework.version>
</properties>
<profiles>
<profile>
<id>spring</id>
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/libs-snapshot-local</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>https://repo.spring.io/release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/libs-snapshot-local</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<profile>
<id>strict</id>
<properties>
<maven.test.failure.ignore>false</maven.test.failure.ignore>
</properties>
</profile>
<profile>
<id>fast</id>
<properties>
<maven.test.skip>true</maven.test.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
</profile>
<profile>
<id>java8</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>staging</id>
<distributionManagement>
<site>
<id>spring-site-staging</id>
<url>file:///${java.io.tmpdir}/spring-retry/docs</url>
</site>
<repository>
<id>spring-milestone-staging</id>
<url>file:///${java.io.tmpdir}/spring-retry/milestone</url>
</repository>
<snapshotRepository>
<id>spring-snapshot-staging</id>
<url>file:///${java.io.tmpdir}/spring-retry/snapshot</url>
</snapshotRepository>
</distributionManagement>
</profile>
<profile>
<id>milestone</id>
<distributionManagement>
<repository>
<id>repo.spring.io</id>
<name>Spring Milestone Repository</name>
<url>https://repo.spring.io/libs-milestone-local</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>central</id>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<url>http://github.com/spring-projects/spring-retry</url>
<connection>scm:git:git://github.com/spring-projects/spring-retry.git</connection>
<developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-retry.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>dsyer</id>
<name>Dave Syer</name>
<email>dsyer@gopivotal.com</email>
</developer>
</developers>
<distributionManagement>
<!-- see 'staging' profile for dry-run deployment settings -->
<downloadUrl>http://www.springsource.com/download/community
</downloadUrl>
<site>
<id>spring-docs</id>
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-retry/docs/${project.version}
</url>
</site>
<repository>
<id>repo.spring.io</id>
<name>Spring Release Repository</name>
<url>https://repo.spring.io/libs-release-local</url>
</repository>
<snapshotRepository>
<id>repo.spring.io</id>
<name>Spring Snapshot Repository</name>
<url>https://repo.spring.io/libs-snapshot-local</url>
</snapshotRepository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${spring.framework.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<descriptorRefs>
<descriptorRef>project</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<!--forkMode>pertest</forkMode -->
<includes>
<include>**/*Tests.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.springframework.retry.TerminatedRetryException.class
org.springframework.retry.RetryStatistics.class
org.springframework.retry.RetryListener.class
org.springframework.retry.RetryOperations.class
org.springframework.retry.RetryContext.class
org.springframework.retry.context.RetryContextSupport.class
org.springframework.retry.RetryException.class
org.springframework.retry.support.DefaultRetryState.class
org.springframework.retry.support.RetrySimulator$StealingSleeper.class
org.springframework.retry.support.RetrySimulation.class
org.springframework.retry.support.RetrySynchronizationManager.class
org.springframework.retry.support.RetryTemplate.class
org.springframework.retry.support.RetrySimulator.class
org.springframework.retry.support.RetrySimulator$FailingRetryException.class
org.springframework.retry.support.RetrySimulation$SleepSequence.class
org.springframework.retry.support.RetrySimulator$FailingRetryCallback.class
org.springframework.retry.listener.RetryListenerSupport.class
org.springframework.retry.RecoveryCallback.class
org.springframework.retry.RetryCallback.class
org.springframework.retry.RetryState.class
org.springframework.retry.policy.CircuitBreakerRetryPolicy.class
org.springframework.retry.policy.SoftReferenceMapRetryContextCache.class
org.springframework.retry.policy.MapRetryContextCache.class
org.springframework.retry.policy.SimpleRetryPolicy.class
org.springframework.retry.policy.NeverRetryPolicy.class
org.springframework.retry.policy.SimpleRetryPolicy$SimpleRetryContext.class
org.springframework.retry.policy.CircuitBreakerRetryPolicy$CircuitBreakerRetryContext.class
org.springframework.retry.policy.ExceptionClassifierRetryPolicy.class
org.springframework.retry.policy.RetryCacheCapacityExceededException.class
org.springframework.retry.policy.TimeoutRetryPolicy$TimeoutRetryContext.class
org.springframework.retry.policy.CompositeRetryPolicy$CompositeRetryContext.class
org.springframework.retry.policy.CompositeRetryPolicy.class
org.springframework.retry.policy.TimeoutRetryPolicy.class
org.springframework.retry.policy.AlwaysRetryPolicy.class
org.springframework.retry.policy.RetryContextCache.class
org.springframework.retry.policy.ExpressionRetryPolicy.class
org.springframework.retry.policy.ExceptionClassifierRetryPolicy$ExceptionClassifierRetryContext.class
org.springframework.retry.policy.NeverRetryPolicy$NeverRetryContext.class
org.springframework.retry.interceptor.RetryInterceptorBuilder$StatelessRetryInterceptorBuilder.class
org.springframework.retry.interceptor.RetryOperationsInterceptor$1.class
org.springframework.retry.interceptor.MethodArgumentsKeyGenerator.class
org.springframework.retry.interceptor.RetryInterceptorBuilder$1.class
org.springframework.retry.interceptor.MethodInvocationRecoverer.class
org.springframework.retry.interceptor.RetryInterceptorBuilder$StatefulRetryInterceptorBuilder.class
org.springframework.retry.interceptor.StatefulRetryOperationsInterceptor$MethodInvocationRetryCallback.class
org.springframework.retry.interceptor.StatefulRetryOperationsInterceptor$1.class
org.springframework.retry.interceptor.RetryInterceptorBuilder.class
org.springframework.retry.interceptor.StatefulRetryOperationsInterceptor.class
org.springframework.retry.interceptor.RetryOperationsInterceptor.class
org.springframework.retry.interceptor.FixedKeyGenerator.class
org.springframework.retry.interceptor.NewMethodArgumentsIdentifier.class
org.springframework.retry.interceptor.RetryInterceptorBuilder$CircuitBreakerInterceptorBuilder.class
org.springframework.retry.interceptor.Retryable.class
org.springframework.retry.interceptor.RetryOperationsInterceptor$ItemRecovererCallback.class
org.springframework.retry.interceptor.StatefulRetryOperationsInterceptor$ItemRecovererCallback.class
org.springframework.retry.RetryPolicy.class
org.springframework.retry.ExhaustedRetryException.class
org.springframework.retry.stats.ExponentialAverageRetryStatistics$ExponentialAverage.class
org.springframework.retry.stats.DefaultRetryStatisticsFactory.class
org.springframework.retry.stats.RetryStatisticsFactory.class
org.springframework.retry.stats.StatisticsListener.class
org.springframework.retry.stats.StatisticsRepository.class
org.springframework.retry.stats.DefaultStatisticsRepository.class
org.springframework.retry.stats.ExponentialAverageRetryStatistics.class
org.springframework.retry.stats.DefaultRetryStatistics.class
org.springframework.retry.stats.MutableRetryStatistics.class
org.springframework.retry.backoff.ObjectWaitSleeper.class
org.springframework.retry.backoff.NoBackOffPolicy.class
org.springframework.retry.backoff.BackOffContext.class
org.springframework.retry.backoff.UniformRandomBackOffPolicy.class
org.springframework.retry.backoff.ExponentialBackOffPolicy.class
org.springframework.retry.backoff.ThreadWaitSleeper.class
org.springframework.retry.backoff.FixedBackOffPolicy.class
org.springframework.retry.backoff.Sleeper.class
org.springframework.retry.backoff.ExponentialRandomBackOffPolicy.class
org.springframework.retry.backoff.ExponentialBackOffPolicy$ExponentialBackOffContext.class
org.springframework.retry.backoff.StatelessBackOffPolicy.class
org.springframework.retry.backoff.SleepingBackOffPolicy.class
org.springframework.retry.backoff.BackOffPolicy.class
org.springframework.retry.backoff.BackOffInterruptedException.class
org.springframework.retry.backoff.ExponentialRandomBackOffPolicy$ExponentialRandomBackOffContext.class
org.springframework.retry.annotation.RetryConfiguration$AnnotationClassOrMethodPointcut.class
org.springframework.retry.annotation.RetryConfiguration.class
org.springframework.retry.annotation.RetryConfiguration$AnnotationMethodsResolver$1.class
org.springframework.retry.annotation.Backoff.class
org.springframework.retry.annotation.EnableRetry.class
org.springframework.retry.annotation.RecoverAnnotationRecoveryHandler$1.class
org.springframework.retry.annotation.Recover.class
org.springframework.retry.annotation.RecoverAnnotationRecoveryHandler.class
org.springframework.retry.annotation.AnnotationAwareRetryOperationsInterceptor.class
org.springframework.retry.annotation.CircuitBreaker.class
org.springframework.retry.annotation.AnnotationAwareRetryOperationsInterceptor$1.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
spring-framework-bom-${spring.framework.version}.jar
/org.springframework/spring-framework-bom/${spring.framework.version}
查看spring-framework-bom所有版本文件
|