Browse Source

Refer to Spring Retry project in Javadoc

pull/34138/merge
Sam Brannen 6 months ago
parent
commit
f3f05da39b
  1. 3
      spring-aop/src/main/java/org/springframework/aop/retry/annotation/Retryable.java
  2. 3
      spring-core/src/main/java/org/springframework/core/retry/RetryOperations.java

3
spring-aop/src/main/java/org/springframework/aop/retry/annotation/Retryable.java

@ -35,6 +35,9 @@ import org.springframework.core.annotation.AliasFor; @@ -35,6 +35,9 @@ import org.springframework.core.annotation.AliasFor;
* as well as Reactor's retry support, either re-invoking an imperative
* target method or decorating a reactive result accordingly.
*
* <p>Inspired by the <a href="https://github.com/spring-projects/spring-retry">Spring Retry</a>
* project but redesigned as a minimal core retry feature in the Spring Framework.
*
* @author Juergen Hoeller
* @since 7.0
* @see RetryAnnotationBeanPostProcessor

3
spring-core/src/main/java/org/springframework/core/retry/RetryOperations.java

@ -24,6 +24,9 @@ import org.jspecify.annotations.Nullable; @@ -24,6 +24,9 @@ import org.jspecify.annotations.Nullable;
* <p>Implemented by {@link RetryTemplate}. Not often used directly, but a useful
* option to enhance testability, as it can easily be mocked or stubbed.
*
* <p>Inspired by the <a href="https://github.com/spring-projects/spring-retry">Spring Retry</a>
* project but redesigned as a minimal core retry feature in the Spring Framework.
*
* @author Mahmoud Ben Hassine
* @since 7.0
* @see RetryTemplate

Loading…
Cancel
Save