@GetMapping("/consumer/payment/getForEntity/{id}")
public CommonResult<Payment> getPayment2(@PathVariable("id") Long id)
{
ResponseEntity<CommonResult> entity = restTemplate.getForEntity(PAYMENT_URL+"/payment/get/"+id,CommonResult.class);
if(entity.getStatusCode().is2xxSuccessful()){
return entity.getBody();
}else{
return new CommonResult<>(444,"操作失败");
}
}
相关文章
- 12-17Ribbon负载均衡策略——重试负载均衡策略使用
- 12-17Ribbon实现负载均衡时 服务提供者注册失败 原因之一
- 12-17springCloud ribbon均衡负载的配置及原理
- 12-17什么是 Ribbon负载均衡?
- 12-17Springcloud之Ribbon[负载均衡]
- 12-17③SpringCloud 实战:使用 Ribbon 客户端负载均衡
- 12-17负载均衡—Ribbon
- 12-17转载:springcloud 第四章 服务消费者(负载均衡ribbon)
- 12-174、SpringCloud:负载均衡Ribbon——基于客户端
- 12-17【分布式】SpringCloud(4)--Ribbon负载均衡