标签:config The getting nbsp 了解 balance ram fail 相关
RestTemplate
可以自动配置为使用功能区。要创建负载平衡RestTemplate
创建RestTemplate
@Bean
并使用@LoadBalanced
限定符。
RestTemplate
bean。它必须由单个应用程序创建。@Configuration public class MyConfiguration { @LoadBalanced @Bean RestTemplate restTemplate() { return new RestTemplate(); } } public class MyClass { @Autowired private RestTemplate restTemplate; public String doOtherStuff() { String results = restTemplate.getForObject("http://stores/stores", String.class); return results; } }
URI需要使用虚拟主机名(即服务名称,而不是主机名)。Ribbon客户端用于创建完整的物理地址。有关 如何设置RestTemplate
的详细信息,请参阅 RibbonAutoConfiguration。
负载平衡RestTemplate
可以配置为重试失败的请求。默认情况下,该逻辑被禁用,您可以通过将Spring重试添加到应用程序的类路径来启用它。负载平衡RestTemplate
将符合与重试失败请求相关的一些Ribbon配置值。如果要在类路径中使用Spring重试来禁用重试逻辑,则可以设置spring.cloud.loadbalancer.retry.enabled=false
。您可以使用的属性是client.ribbon.MaxAutoRetries
,client.ribbon.MaxAutoRetriesNextServer
和client.ribbon.OkToRetryOnAllOperations
。请参阅Ribbon文档 ,了解属性的具体内容。
标签:config The getting nbsp 了解 balance ram fail 相关
原文地址:https://www.cnblogs.com/JavaUI/p/9272299.html