spring-retry SimpleRetryPolicy 源码
spring-retry SimpleRetryPolicy 代码
文件路径:/src/main/java/org/springframework/retry/policy/SimpleRetryPolicy.java
/*
* Copyright 2006-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.retry.policy;
import java.util.Map;
import java.util.function.Supplier;
import org.springframework.classify.BinaryExceptionClassifier;
import org.springframework.retry.RetryContext;
import org.springframework.retry.RetryPolicy;
import org.springframework.retry.context.RetryContextSupport;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
/**
* Simple retry policy that retries a fixed number of times for a set of named exceptions
* (and subclasses). The number of attempts includes the initial try, so e.g.
*
* <pre>
* retryTemplate = new RetryTemplate(new SimpleRetryPolicy(3));
* retryTemplate.execute(callback);
* </pre>
*
* will execute the callback at least once, and as many as 3 times.
*
* Since version 1.3 it is not necessary to use this class. The same behaviour can be
* achieved by constructing a {@link CompositeRetryPolicy} with
* {@link MaxAttemptsRetryPolicy} and {@link BinaryExceptionClassifierRetryPolicy} inside,
* that is actually performed by:
*
* <pre>
* RetryTemplate.builder()
* .maxAttempts(3)
* .retryOn(Exception.class)
* .build();
* </pre>
*
* or by {@link org.springframework.retry.support.RetryTemplate#defaultInstance()}
*
* @author Dave Syer
* @author Rob Harrop
* @author Gary Russell
* @author Aleksandr Shamukov
*/
@SuppressWarnings("serial")
public class SimpleRetryPolicy implements RetryPolicy {
/**
* The default limit to the number of attempts for a new policy.
*/
public final static int DEFAULT_MAX_ATTEMPTS = 3;
private int maxAttempts;
private Supplier<Integer> maxAttemptsSupplier;
private BinaryExceptionClassifier retryableClassifier = new BinaryExceptionClassifier(false);
/**
* Create a {@link SimpleRetryPolicy} with the default number of retry attempts,
* retrying all exceptions.
*/
public SimpleRetryPolicy() {
this(DEFAULT_MAX_ATTEMPTS, BinaryExceptionClassifier.defaultClassifier());
}
/**
* Create a {@link SimpleRetryPolicy} with the specified number of retry attempts,
* retrying all exceptions.
* @param maxAttempts the maximum number of attempts
*/
public SimpleRetryPolicy(int maxAttempts) {
this(maxAttempts, BinaryExceptionClassifier.defaultClassifier());
}
/**
* Create a {@link SimpleRetryPolicy} with the specified number of retry attempts.
* @param maxAttempts the maximum number of attempts
* @param retryableExceptions the map of exceptions that are retryable
*/
public SimpleRetryPolicy(int maxAttempts, Map<Class<? extends Throwable>, Boolean> retryableExceptions) {
this(maxAttempts, retryableExceptions, false);
}
/**
* Create a {@link SimpleRetryPolicy} with the specified number of retry attempts. If
* traverseCauses is true, the exception causes will be traversed until a match or the
* root cause is found.
* @param maxAttempts the maximum number of attempts
* @param retryableExceptions the map of exceptions that are retryable based on the
* map value (true/false).
* @param traverseCauses true to traverse the exception cause chain until a classified
* exception is found or the root cause is reached.
*/
public SimpleRetryPolicy(int maxAttempts, Map<Class<? extends Throwable>, Boolean> retryableExceptions,
boolean traverseCauses) {
this(maxAttempts, retryableExceptions, traverseCauses, false);
}
/**
* Create a {@link SimpleRetryPolicy} with the specified number of retry attempts. If
* traverseCauses is true, the exception causes will be traversed until a match or the
* root cause is found. The default value indicates whether to retry or not for
* exceptions (or super classes thereof) that are not found in the map.
* @param maxAttempts the maximum number of attempts
* @param retryableExceptions the map of exceptions that are retryable based on the
* map value (true/false).
* @param traverseCauses true to traverse the exception cause chain until a classified
* exception is found or the root cause is reached.
* @param defaultValue the default action.
*/
public SimpleRetryPolicy(int maxAttempts, Map<Class<? extends Throwable>, Boolean> retryableExceptions,
boolean traverseCauses, boolean defaultValue) {
super();
this.maxAttempts = maxAttempts;
this.retryableClassifier = new BinaryExceptionClassifier(retryableExceptions, defaultValue);
this.retryableClassifier.setTraverseCauses(traverseCauses);
}
/**
* Create a {@link SimpleRetryPolicy} with the specified number of retry attempts and
* provided exception classifier.
* @param maxAttempts the maximum number of attempts
* @param classifier custom exception classifier
*/
public SimpleRetryPolicy(int maxAttempts, BinaryExceptionClassifier classifier) {
super();
this.maxAttempts = maxAttempts;
this.retryableClassifier = classifier;
}
/**
* Set the number of attempts before retries are exhausted. Includes the initial
* attempt before the retries begin so, generally, will be {@code >= 1}. For example
* setting this property to 3 means 3 attempts total (initial + 2 retries).
* @param maxAttempts the maximum number of attempts including the initial attempt.
*/
public void setMaxAttempts(int maxAttempts) {
this.maxAttempts = maxAttempts;
}
/**
* Set a supplier for the number of attempts before retries are exhausted. Includes
* the initial attempt before the retries begin so, generally, will be {@code >= 1}.
* For example setting this property to 3 means 3 attempts total (initial + 2
* retries). IMPORTANT: This policy cannot be serialized when a max attempts supplier
* is provided. Serialization might be used by a distributed cache when using this
* policy in a {@code CircuitBreaker} context.
* @param maxAttemptsSupplier the maximum number of attempts including the initial
* attempt.
* @since 2.0
*/
public void setMaxAttempts(Supplier<Integer> maxAttemptsSupplier) {
Assert.notNull(maxAttemptsSupplier, "'maxAttemptsSupplier' cannot be null");
this.maxAttemptsSupplier = maxAttemptsSupplier;
}
/**
* The maximum number of attempts before failure.
* @return the maximum number of attempts
*/
public int getMaxAttempts() {
if (this.maxAttemptsSupplier != null) {
return this.maxAttemptsSupplier.get();
}
return this.maxAttempts;
}
/**
* Test for retryable operation based on the status.
*
* @see org.springframework.retry.RetryPolicy#canRetry(org.springframework.retry.RetryContext)
* @return true if the last exception was retryable and the number of attempts so far
* is less than the limit.
*/
@Override
public boolean canRetry(RetryContext context) {
Throwable t = context.getLastThrowable();
return (t == null || retryForException(t)) && context.getRetryCount() < getMaxAttempts();
}
/**
* @see org.springframework.retry.RetryPolicy#close(RetryContext)
*/
@Override
public void close(RetryContext status) {
}
/**
* Update the status with another attempted retry and the latest exception.
*
* @see RetryPolicy#registerThrowable(RetryContext, Throwable)
*/
@Override
public void registerThrowable(RetryContext context, Throwable throwable) {
SimpleRetryContext simpleContext = ((SimpleRetryContext) context);
simpleContext.registerThrowable(throwable);
}
/**
* Get a status object that can be used to track the current operation according to
* this policy. Has to be aware of the latest exception and the number of attempts.
*
* @see org.springframework.retry.RetryPolicy#open(RetryContext)
*/
@Override
public RetryContext open(RetryContext parent) {
return new SimpleRetryContext(parent);
}
private static class SimpleRetryContext extends RetryContextSupport {
public SimpleRetryContext(RetryContext parent) {
super(parent);
}
}
/**
* Delegates to an exception classifier.
* @param ex
* @return true if this exception or its ancestors have been registered as retryable.
*/
private boolean retryForException(Throwable ex) {
return this.retryableClassifier.classify(ex);
}
@Override
public String toString() {
return ClassUtils.getShortName(getClass()) + "[maxAttempts=" + getMaxAttempts() + "]";
}
}
相关信息
相关文章
spring-retry AlwaysRetryPolicy 源码
spring-retry BinaryExceptionClassifierRetryPolicy 源码
spring-retry CircuitBreakerRetryPolicy 源码
spring-retry CompositeRetryPolicy 源码
spring-retry ExceptionClassifierRetryPolicy 源码
spring-retry ExpressionRetryPolicy 源码
spring-retry MapRetryContextCache 源码
spring-retry MaxAttemptsRetryPolicy 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦