SpringCloud(Finchley.RELEASE版本)入门学习之————Hystrix服务容错保护

本文主要是介绍SpringCloud(Finchley.RELEASE版本)入门学习之————Hystrix服务容错保护,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、Hystrix简介入门

1、为什么要有服务容错保护?

在微服务架构中,我们将系统拆分成很多服务单元,个单元应用间通过服务注册与订阅方式互相依赖。由于每个单元都在不同的进程中运行,依赖通过远程调用方式运行,这样就有可能因为网络原因或者是依赖服务自身问题出现调用故障或延迟,而这些问题会直接导致调用方的对外服务也出现延迟,若此时调用方的请求不断增加,最后就会因为等待出现故障的依赖方响应形成任务积压,最终导致自身服务的瘫痪。
在微服务中存在着那么多的服务单元,若一个单元出现故障,就很容易因依赖关系而引发故障的蔓延,最终导致整个系统瘫痪,这样的架构相对较传统的架构更不稳定,为了解决这样的问题,产生了断路器等一系列的服务保护机制。

2、Hystrix作用

Spring Cloud Hystrix 实现了断路器、线程隔离等一系列服务保护功能。它也是基于Netflix的开源框架Hystrix实现的,该框架的目标在于通过控制那些访问远程系统系统、服务和第三方库的节点,从而对延迟和故障提供更强大的容错能力。Hystrix具备服务降级、服务熔断、线程和信号隔离、请求缓存、请求合并以及服务监控等强大功能。

二、Hystrix简单构建
1、Ribbon 中使用Hystrix

1、在ribbon的pom文件中引入Hystrix依赖。

   <!--Hystrix--><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-hystrix</artifactId></dependency>

2、在RibbonApplication启动类中加入@EnableHystrix注解,申明启用断路器功能。

package com.demo.cloud.ribbon;import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;/*** @ClassName RibbonApplication* @Description TODO* @Author shanzz* @Date 2019/5/28 11:03* @Version 1.0**/
@SpringBootApplication
@EnableDiscoveryClient
@EnableHystrix
public class RibbonApplication {public static void main(String[] args) {SpringApplication.run(RibbonApplication.class,args);}
}

3、在service接口的方法上使用 @HystrixCommand注解并指定fallbackMethod熔断调用的方法。

package com.demo.cloud.ribbon.service;import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;/*** @ClassName AdminService* @Description TODO* @Author shanzz* @Date 2019/5/28 13:50* @Version 1.0**/
@Service
public class AdminService {@Autowiredprivate RestTemplate restTemplate;@HystrixCommand(fallbackMethod = "errorMsg")public String sayHi(String message){return restTemplate.getForObject("http://eureka-client/hi?message="+message,String.class);}public String errorMsg(String message){return String.format("you have an error message;the message is %s",message);}
}

4、将服务提供者断开连接,模拟测试断路器是否工作,结果如下:
在这里插入图片描述
发现此时断路器已经开始工作。

2、Feign中使用Hystrix

1、因为Feign是自带熔断器的,不过默认熔断器是关闭的,所以我们需要在yml配置文件中将熔断器开启,添加如下配置

feign:hystrix:enabled: true

2、在service接口中指定fallback方法

package com.demo.cloud.eurekafeign.service;import com.demo.cloud.eurekafeign.service.impl.FeignServiceHystrix;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;@FeignClient(value = "eureka-client",fallback = FeignServiceHystrix.class)
public interface FeignService {@RequestMapping(value = "hi",method = RequestMethod.GET)public String sayHi(@RequestParam(value = "message") String message);
}

3、创建熔断实现类,并实现service方法

package com.demo.cloud.eurekafeign.service.impl;import com.demo.cloud.eurekafeign.service.FeignService;
import org.springframework.stereotype.Component;/*** @ClassName FeignServiceHystrix* @Description TODO* @Author shanzz* @Date 2019/5/29 14:40* @Version 1.0**/
@Component
public class FeignServiceHystrix implements FeignService {@Overridepublic String sayHi(String message) {return String.format("you have an bad request,your send msg is %s",message);}
}

4、关闭服务提供者,访问http://localhost:8765/hi?message=helloFeign可发现如下结果
在这里插入图片描述

三、使用Hystrix仪表盘监控

ribbon 和feign的方式相同
1、在pom文件中引入Hystrix dashboard依赖

   <!--Hystrix--><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId></dependency>

2、在application启动类加入@EnableHystrixDashboard 注解 开启仪表盘

package com.demo.cloud.eurekafeign;import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
import org.springframework.cloud.openfeign.EnableFeignClients;@EnableDiscoveryClient
@EnableFeignClients//开启Spring Cloud Feign支持
@SpringBootApplication
@EnableHystrixDashboard//开启Hystrix仪表监控
public class EurekaFeignApplication {public static void main(String[] args) {SpringApplication.run(EurekaFeignApplication.class, args);}}

3、创建一个Hystrix。stream的servlet配置类

package com.demo.cloud.eurekafeign.config;import com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;/*** @ClassName HystrixDashboardConfiguration* @Description TODO* @Author shanzz* @Date 2019/5/29 15:11* @Version 1.0**/
@Configuration
public class HystrixDashboardConfiguration {@Beanpublic ServletRegistrationBean getServlet(){HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);registrationBean.setLoadOnStartup(1);registrationBean.addUrlMappings("/hystrix.stream");registrationBean.setName("HystrixMetricsStreamServlet");return registrationBean;}
}

4、启动,访问http://localhost:8765/hystrix 可看到如下结果
在这里插入图片描述
点击Monitor Stream,进入如下界面,第一次进入,为发生访问时
在这里插入图片描述
多次访问http://localhost:8765/hi?message=helloFeign可发现变化
在这里插入图片描述

【参考资料】
《Spring Cloud微服务实战》
https://www.funtl.com/
https://www.funtl.com/zh/spring-cloud-netflix/Spring-Cloud-使用熔断器防止服务雪崩.html

这篇关于SpringCloud(Finchley.RELEASE版本)入门学习之————Hystrix服务容错保护的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/788656

相关文章

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis