Fix javadoc links to @Retryable

See gh-34529
See gh-35133
This commit is contained in:
Juergen Hoeller 2025-07-01 18:00:59 +02:00
parent 95a6a0ceaf
commit 95c35e9655
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import java.util.Collections;
/**
* A specification for retry attempts on a given method, combining common
* retry characteristics. This roughly matches the annotation attributes
* on {@link org.springframework.aop.retry.annotation.Retryable}.
* on {@link org.springframework.resilience.annotation.Retryable}.
*
* @author Juergen Hoeller
* @since 7.0
@ -37,7 +37,7 @@ import java.util.Collections;
* @param maxDelay the maximum delay for any retry attempt
* @see AbstractRetryInterceptor#getRetrySpec
* @see SimpleRetryInterceptor#SimpleRetryInterceptor(MethodRetrySpec)
* @see org.springframework.aop.retry.annotation.Retryable
* @see org.springframework.resilience.annotation.Retryable
*/
public record MethodRetrySpec(
Collection<Class<? extends Throwable>> includes,