SpringCloud系列教材 (十三)- 断路器 Hystrix

 

步骤1:问题
步骤2:断路器
步骤3:先运行,看到效果,再学习
步骤4:模仿和排错
步骤5:改造
步骤6:pom.xml
步骤7:ProductClientFeign
步骤8:ProductClientFeignHystrix
步骤9:application.yml

步骤 1 : 问题

学习到这里,我们知道,视图微服务是依赖于数据微服务的。
那么当数据微服务不可用的时候,会怎么样呢?
我们主动把 ProductDataServiceApplication 关闭,然后再访问 :
http://localhost:8012/products 就会抛出如图所示的异常。

出现这个问题肯定是难以避免的,比如数据微服务所在的机房停电了。 但是这样的提示信息是非常不友好的,客户也看不懂这个是什么。
为了解决这个问题,我们就会引入断路器的概念。

SpringCloud系列教材 (十三)- 断路器 Hystrix_第1张图片

步骤 2 : 断路器

所谓的断路器,就是当被访问的微服务无法使用的时候,当前服务能够感知这个现象,并且提供一个备用的方案出来。
比如在这个例子里,数据微服务无法使用了,如果有了断路器,那么视图微服务就能够知道此事,并且展示给用户相关的信息。 而不会报错或者一直卡在那里~

SpringCloud系列教材 (十三)- 断路器 Hystrix_第2张图片

步骤 3 : 先运行,看到效果,再学习

老规矩,先下载下载区(点击进入)的可运行项目,配置运行起来,确认可用之后,再学习做了哪些步骤以达到这样的效果。 
挨个启动: EurekaServerApplication, ConfigServerApplication, ProductViewServiceFeignApplication。
注意, 数据服务是没有启动的。
然后访问地址:
http://127.0.0.1:8012/products
会发现,依然可以打开,并且得到提示信息: 产品数据微服务不可用。

SpringCloud系列教材 (十三)- 断路器 Hystrix_第3张图片

步骤 4 : 模仿和排错

在确保可运行项目能够正确无误地运行之后,再严格照着教程的步骤,对代码模仿一遍。 
模仿过程难免代码有出入,导致无法得到期望的运行结果,此时此刻通过比较正确答案 ( 可运行项目 ) 和自己的代码,来定位问题所在。 
采用这种方式,学习有效果,排错有效率,可以较为明显地提升学习速度,跨过学习路上的各个槛。 

推荐使用diffmerge软件,进行文件夹比较。把你自己做的项目文件夹,和我的可运行项目文件夹进行比较。 
这个软件很牛逼的,可以知道文件夹里哪两个文件不对,并且很明显地标记出来 
这里提供了绿色安装和使用教程:diffmerge 下载和使用教程

步骤 5 : 改造

接下来基于上个知识点的可运行项目进行改造。 改造的对象是视图服务: product-view-service-feign。

步骤 6 : pom.xml

增加 jar spring-cloud-starter-netflix-hystrix 以支持断路器。

<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

  <modelVersion>4.0.0modelVersion>

  <parent>

    <groupId>cn.how2j.springcloudgroupId>

    <artifactId>springcloudartifactId>

    <version>0.0.1-SNAPSHOTversion>

  parent>

  <artifactId>product-view-service-feignartifactId>

     

    <dependencies>

        <dependency>

            <groupId>org.springframework.cloudgroupId>

            <artifactId>spring-cloud-starter-netflix-eureka-clientartifactId>

        dependency>

        <dependency>

            <groupId>org.springframework.cloudgroupId>

            <artifactId>spring-cloud-starter-openfeignartifactId>

        dependency>

                   

        <dependency>

            <groupId>org.springframework.bootgroupId>

            <artifactId>spring-boot-starter-webartifactId>

        dependency>

   

      <dependency>

        <groupId>org.springframework.bootgroupId>

        <artifactId>spring-boot-starter-thymeleafartifactId>

      dependency>

   

    <dependency>

        <groupId>org.springframework.cloudgroupId>

        <artifactId>spring-cloud-starter-zipkinartifactId>

    dependency>     

   

    <dependency>

        <groupId>org.springframework.cloudgroupId>

        <artifactId>spring-cloud-starter-configartifactId>

    dependency>       

      

    <dependency>

        <groupId>org.springframework.bootgroupId>

        <artifactId>spring-boot-starter-actuatorartifactId>

    dependency>   

    <dependency>

        <groupId>org.springframework.cloudgroupId>

        <artifactId>spring-cloud-starter-bus-amqpartifactId>

    dependency>         

    <dependency>

        <groupId>org.springframework.cloudgroupId>

        <artifactId>spring-cloud-starter-netflix-hystrixartifactId>

    dependency>    

       

    dependencies>

     

project>

步骤 7 : ProductClientFeign

注解由原来的
@FeignClient(value = "PRODUCT-DATA-SERVICE")
修改为
@FeignClient(value = "PRODUCT-DATA-SERVICE",fallback = ProductClientFeignHystrix.class)

这就表示,如果访问的 PRODUCT-DATA-SERVICE 不可用的话,就调用 ProductClientFeignHystrix 来进行反馈信息。

package cn.how2j.springcloud.client;

 

import java.util.List;

 

import org.springframework.cloud.openfeign.FeignClient;

import org.springframework.web.bind.annotation.GetMapping;

 

import cn.how2j.springcloud.pojo.Product;

 

@FeignClient(value = "PRODUCT-DATA-SERVICE",fallback = ProductClientFeignHystrix.class)

public interface ProductClientFeign {

 

    @GetMapping("/products")

    public List listProdcuts();

}

步骤 8 : ProductClientFeignHystrix

ProductClientFeignHystrix 实现了 ProductClientFeign 接口,并提供了 listProdcuts() 方法。
这个方法就会固定返回包含一条信息的集合~

package cn.how2j.springcloud.client;

 

import java.util.ArrayList;

import java.util.List;

 

import org.springframework.stereotype.Component;

 

import cn.how2j.springcloud.pojo.Product;

 

@Component

public class ProductClientFeignHystrix implements ProductClientFeign{

    public List listProdcuts(){

        List result = new ArrayList<>();

        result.add(new Product(0,"产品数据微服务不可用",0));

        return result;

    }

 

}

步骤 9 : application.yml

在配置文件里开启断路器

spring:

  application:

    name:  product-view-service-feign

  thymeleaf:

    cache: false

    prefix: classpath:/templates/

    suffix: .html

    encoding: UTF-8

    content-type: text/html

    mode: HTML5       

  zipkin:

    base-url: http://localhost:9411   

 

feign.hystrix.enabled: true

      

management:

  endpoints:

    web:

      exposure:

        include: "*"

      cors:

        allowed-origins: "*"

        allowed-methods: "*"       


更多内容,点击了解: https://how2j.cn/k/springcloud/springcloud-hystrix/2042.html

你可能感兴趣的:(SpringCloud系列教材 (十三)- 断路器 Hystrix)