A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

一、Ribbon中使用熔断器
服务调用方有两种方式Ribbon与Feign,现在Ribbon上使用,首先在项目上
添加依赖
<dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-netflix-hystrix</artifactId></dependency>
在 Application 中增加 @EnableHystrix 注解
[url=][/url]
@EnableDiscoveryClient@SpringBootApplication@EnableHystrixpublic class ConsumerDeptRibbonApplication {    public static void main(String[] args) {        SpringApplication.run(ConsumerDeptRibbonApplication.class, args);    }}[url=][/url]

在 Service 中增加 @HystrixCommand 注解
在需要有熔断机制的方法上添加 @HystrixCommand,属性fallbackMethod是熔断时返回的方法:
[url=][/url]
@Servicepublic class DeptService {    @Autowired    private RestTemplate restTemplate;    @HystrixCommand(fallbackMethod = "hiError")    public String sayHi(String message) {        //这里指指定了服务名称,不用管ip 地址与端口        return restTemplate.getForObject("http://SPRING-CLOUD-LEARN-PROVIDER-DEPT/hi?message=" + message, String.class);    }    public String hiError(String message) {        return "Hi,your message is :\"" + message + "\" but request error.";    }}[url=][/url]

这样就已经完成了开发,我们进行相应的测试
启动spring-cloud-learn-eureka注册中心,启动部门服务提供者spring-cloud-learn-provider-dept,然后启动spring-cloud-learn-consumer-dept-ribbon,这个时候服务正常,我们能得到正常的反馈,与之前相同,然我们停掉spring-cloud-learn-provider-dept,然后再刷新http://localhost:8764/hi?message=hello,会发现:

二、Feign中使用熔断器
Feign 是自带熔断器的,但默认是关闭的。需要在配置文件中配置打开它,在配置文件增加以下代码:
feign:  hystrix:    enabled: true
然后我们创建一个与服务对应相关的专门应对熔断的类:
[url=][/url]
@Componentpublic class DeptServiceHystrix implements DeptService {    @Override    public String sayHi(String message) {        return "Hi,your message is :\"" + message + "\" but request error.";    }}[url=][/url]

这个类继承DeptService,然后实现对应当出现熔断时提供的反馈服务,然后在原先的服务中增加fallback指定类
[url=][/url]
//服务提供者的名字@FeignClient(value = "spring-cloud-learn-provider-dept", fallback = DeptServiceHystrix.class)public interface DeptService {    @RequestMapping(value = "hi", method = RequestMethod.GET)    String sayHi(@RequestParam(value = "message") String message);}[url=][/url]

然后启动spring-cloud-learn-consumer-dept-feign,在部门服务挂掉之后,也能实现熔断效果
还有一种创建工厂的方式,新建一个DeptServiceFallbackFactory:
[url=][/url]
@Componentpublic class DeptServiceFallbackFactory implements FallbackFactory<DeptService> {    @Override    public DeptService create(Throwable throwable) {        return new DeptService() {            @Override            public String sayHi(String message) {                return "Hi,your message is :\"" + message + "\" but request error.";            }        };    }}[url=][/url]


三、熔断器仪表盘监控
除了隔离依赖服务的调用以外,Hystrix还提供了准实时的调用监控(Hystrix Dashboard),Hystrix会持续地记录所有通过Hystrix发起的请求的执行信息,并以统计报表和图形的形式展示给用户,包括每秒执行多少请求多少成功,多少失败等。Netflix通过hystrix-metrics-event-stream项目实现了对以上指标的监控。Spring Cloud也提供了Hystrix Dashboard的整合,对监控内容转化成可视化界面。
在 Ribbon 和 Feign 项目增加 Hystrix 仪表盘功能,两个项目的改造方式相同:
在 pom.xml 中增加依赖
<dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId></dependency>
在 Application 中增加 @EnableHystrixDashboard 注解
[url=][/url]
@SpringBootApplication@EnableDiscoveryClient@EnableFeignClients@EnableHystrixDashboardpublic class ConsumerDeptFeignApplication {    public static void main(String[] args) {        SpringApplication.run(ConsumerDeptFeignApplication.class, args);    }}[url=][/url]

创建 hystrix.stream 的 Servlet 配置
Spring Boot 2.x 版本开启 Hystrix Dashboard 与 Spring Boot 1.x 的方式略有不同,需要增加一个 HystrixMetricsStreamServlet 的配置,代码如下:
[url=][/url]
@Configurationpublic class HystrixDashboardConfiguration {    @Bean    public ServletRegistrationBean getServlet() {        HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();        ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);        registrationBean.setLoadOnStartup(1);        registrationBean.addUrlMappings("/hystrix.stream");        registrationBean.setName("HystrixMetricsStreamServlet");        return registrationBean;    }}[url=][/url]

然后启动项目,打开地址:http://localhost:8765/hystrix,这里就可以看到仪表盘启动成功了
1:Delay:该参数用来控制服务器上轮询监控信息的延迟时间,默认为2000毫秒,可以通过配置该属性来降低客户端的网络和CPU消耗。
2:Title:该参数对应了头部标题Hystrix Stream之后的内容,默认会使用具体监控实例的URL,可以通过配置该信息来展示更合适的标题。
点击进入:

2 个回复

倒序浏览
有任何问题欢迎在评论区留言
回复 使用道具 举报
或者添加学姐微信
DKA-2018
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马