Consul Retry

如果您预计在应用程序启动时 consul 代理可能会偶尔不可用,则可以要求其在发生故障后继续尝试。您需要将 spring-retryspring-boot-starter-aop 添加到您的类路径。默认行为是重试 6 次,初始退避间隔为 1000ms,后续退避的指数乘数为 1.1。您可以使用 spring.cloud.consul.retry.* 配置属性配置这些属性(和其他属性)。这适用于 Spring Cloud Consul Config 和 Discovery 注册。

要完全控制重试,请添加 id 为“consulRetryInterceptor”的 @Bean 类型 RetryOperationsInterceptor。SpringRetry 有一个 RetryInterceptorBuilder,可轻松创建。