时间:2021-05-19
本文介绍了spring cloud-使用Hystrix实现单个方法的fallback,分享给大家,具体如下:
一、加入Hystrix依赖
二、编写Controller
package com.chhliu.springboot.restful.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; import com.chhliu.springboot.restful.feignclient.UserFeignClient; import com.chhliu.springboot.restful.vo.User; import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand; @RestController public class RestTemplateControllerHystrixCommand { @Autowired private UserFeignClient client; // 使用Feign来消费Restful服务 @GetMapping("/get/{id}") @HystrixCommand(fallbackMethod="findByIdFallback")// 使用HystrixCommand注解,在fallbackMethod属性中指定fallback的方法 public User findById(@PathVariable Long id) { return client.findById(id); } // 覆写fallbackMethod中指定的方法,注意,此方法的返回值,参数必须与原方法一致 public User findByIdFallback(Long id){ User u = new User(); u.setName("zhangsan"); u.setUsername("chhliu"); u.setId(9L); return u; } }三、在启动类中添加Hystrix支持
@EnableCircuitBreaker四、添加配置文件
五、测试
在浏览器中输入:http://localhost:7904/get/2
测试结果如下:
{"id":9,"username":"chhliu","name":"zhangsan","age":null,"balance":null}
从上面的测试结果可以看出,由于连接超时,直接进入了fallback方法。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了springcloudFeign的Hystrix支持,分享给大家,具体如下:一、Feignclient中加入Hystrix的fallback@Feig
1.官方文档https://cloud.spring.io/spring-cloud-static/spring-cloud-openfeign/2.2.2.R
1.在使用feign做服务调用时,使用继承的方式调用服务,加入Hystrix的熔断处理fallback配置时,会报错,已解决。2.使用feign默认配置,熔断不
文档地址https://github.com/alibaba/spring-cloud-alibaba/blob/master/spring-cloud-ali
Spring-cloud-eureka使用feign调用服务接口的具体方法,供大家参考,具体内容如下基于spring-boot2.0以上版本完成的微服务架构po