diff --git a/spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java b/spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java index 9506266db3..546fe8ad2e 100644 --- a/spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java +++ b/spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java @@ -35,15 +35,15 @@ import org.springframework.util.backoff.FixedBackOff; * retries a {@link Retryable} operation based on a configured {@link RetryPolicy} * and {@link BackOff} policy. * - *
By default, a retryable operation will be invoked at most 3 times with a + *
By default, a retryable operation will be retried at most 3 times with a * fixed backoff of 1 second. * *
A {@link RetryListener} can be {@linkplain #setRetryListener(RetryListener) * registered} to intercept and inject behavior during key retry phases (before a * retry attempt, after a retry attempt, etc.). * - *
All retry operations performed by this class are logged at debug level, - * using {@code "org.springframework.core.retry.RetryTemplate"} as the log category. + *
All retry actions performed by this template are logged at debug level, using + * {@code "org.springframework.core.retry.RetryTemplate"} as the log category. * * @author Mahmoud Ben Hassine * @author Sam Brannen