From f3f05da39be4a962b9c0acdf0d456107e51fe824 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Wed, 25 Jun 2025 16:38:48 +0200 Subject: [PATCH] Refer to Spring Retry project in Javadoc --- .../org/springframework/aop/retry/annotation/Retryable.java | 3 +++ .../java/org/springframework/core/retry/RetryOperations.java | 3 +++ 2 files changed, 6 insertions(+) diff --git a/spring-aop/src/main/java/org/springframework/aop/retry/annotation/Retryable.java b/spring-aop/src/main/java/org/springframework/aop/retry/annotation/Retryable.java index 530230ce422..9285a5900c1 100644 --- a/spring-aop/src/main/java/org/springframework/aop/retry/annotation/Retryable.java +++ b/spring-aop/src/main/java/org/springframework/aop/retry/annotation/Retryable.java @@ -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. * + *
Inspired by the Spring Retry + * project but redesigned as a minimal core retry feature in the Spring Framework. + * * @author Juergen Hoeller * @since 7.0 * @see RetryAnnotationBeanPostProcessor diff --git a/spring-core/src/main/java/org/springframework/core/retry/RetryOperations.java b/spring-core/src/main/java/org/springframework/core/retry/RetryOperations.java index 5005e7b0bda..d69b1570d19 100644 --- a/spring-core/src/main/java/org/springframework/core/retry/RetryOperations.java +++ b/spring-core/src/main/java/org/springframework/core/retry/RetryOperations.java @@ -24,6 +24,9 @@ import org.jspecify.annotations.Nullable; *
Implemented by {@link RetryTemplate}. Not often used directly, but a useful * option to enhance testability, as it can easily be mocked or stubbed. * + *
Inspired by the Spring Retry + * project but redesigned as a minimal core retry feature in the Spring Framework. + * * @author Mahmoud Ben Hassine * @since 7.0 * @see RetryTemplate