Skip to content

Commit f3f05da

Browse files
committed
Refer to Spring Retry project in Javadoc
1 parent e508dea commit f3f05da

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
* as well as Reactor's retry support, either re-invoking an imperative
3636
* target method or decorating a reactive result accordingly.
3737
*
38+
* <p>Inspired by the <a href="https://github.com/spring-projects/spring-retry">Spring Retry</a>
39+
* project but redesigned as a minimal core retry feature in the Spring Framework.
40+
*
3841
* @author Juergen Hoeller
3942
* @since 7.0
4043
* @see RetryAnnotationBeanPostProcessor

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
* <p>Implemented by {@link RetryTemplate}. Not often used directly, but a useful
2525
* option to enhance testability, as it can easily be mocked or stubbed.
2626
*
27+
* <p>Inspired by the <a href="https://github.com/spring-projects/spring-retry">Spring Retry</a>
28+
* project but redesigned as a minimal core retry feature in the Spring Framework.
29+
*
2730
* @author Mahmoud Ben Hassine
2831
* @since 7.0
2932
* @see RetryTemplate

0 commit comments

Comments
 (0)