重试模式
配置
resilience4j.retry:
instances:
retryLicenseService:
maxRetryAttempts: 5 # The maximum number of retry attempts
waitDuration: 10000 # The wait duration between the retry attempts
retry-exceptions: # The list of exceptions you want to retry
- java.util.concurrent.TimeoutException使用
Actuator 端点查看
Last updated