Spring Cloud Commons教程Spring RestTemplate作为负载平衡器客户端
Posted allalongx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Cloud Commons教程Spring RestTemplate作为负载平衡器客户端相关的知识,希望对你有一定的参考价值。
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文档 ,了解属性的具体内容。
注意
|
上述示例中的client 应替换为您的Ribbon客户端名称。 |
以上是关于Spring Cloud Commons教程Spring RestTemplate作为负载平衡器客户端的主要内容,如果未能解决你的问题,请参考以下文章
业余草 SpringCloud教程 | 第六篇: 分布式配置中心(Spring Cloud Config)(Finchley版本)
No spring.config.import set at org.springframework.cloud.commons.ConfigDataMissingEnvironmentPostPr(
No spring.config.import set at org.springframework.cloud.commons.ConfigDataMissingEnvironmentPostPr(