第五章:SpringCloudRibbon&Hystrix小实例

简介: 1.添加pom org.springframework.cloud spring-cloud-starter-hystrix 2.

1.添加pom

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

2.启动类上添加注解

@EnableCircuitBreaker
附图:

img_b9cab9b0e8c1b31b2196299ac6fa8a18.png
image.png

3.在@RequestMapping上添加注解@HystrixCommand(fallbackMethod = "findByIdFallback")

附图:


img_a15fd40010f574fedfdb8f854be80893.png
image.png

源码:

package com.fantj.fantjconsumermovieribbon.controller;

import com.fantj.fantjconsumermovieribbon.entity.User;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

/**
 * Created by Fant.J.
 * 2017/11/11 17:43
 */
@RestController
public class MovieController {
    @Autowired
    private RestTemplate template;

@HystrixCommand(fallbackMethod = "findByIdFallback")
@RequestMapping("/movie/{id}")
public User findById(@PathVariable Long id){
        return this.template.getForObject("http://provider-user3/simple/"+id,User.class);
    }

    public User findByIdFallback(Long id){
        User user = new User();
        user.setId(id);
        return user;
    }
}

其中,fallbackMethod = "findByIdFallback"表示断路器启用后调用findByIdFallback方法。
从代码中可以看出,我在这里是通过ribbon访问provider-user3/simple/"+id这个服务内容,如果正常访问的话,会调用provider-user3服务中的/simple/"+id方法。
eureka:

img_c7fb3b2db5acda1f677f5cde606a840d.png
image.png

1. 访问provider-user3/:
img_87dcf27740eb21d3af4cfe0b08ebcc3b.png
image.png
2. 访问hystrix:
img_f85a5d8371ab17ba00ecf41c804af8f9.png
image.png
3. 然后我停止provider-user3/服务:
img_2e1b2c1d945e0ebb5c36c6ab799f9a12.png
image.png
4. 最后访问hystrix:
img_a766aaeaad94a513cca281b063c3b3d0.png
image.png

说明我们的hystrix起到了作用。(调用了fallback方法)

小知识点

访问hystrix服务下的 /health 可以查看健康启动状况.

img_c95e3a0564751f980fe2c473a947ac38.png
image.png

  • 我在这里开启eureka、provider-user3/、Hystrix 三个服务,请求hystrix的health


    img_7e4a89c7e393f5f4d9f34b4668f14521.png
    image.png
  • 然后我关掉provider-user3服务,再请求/health


    img_99f78b5b9fcdbb8358f147c03b066f50.png
    image.png

    说明了hystrix已启用。

 "hystrix": {
    "status": "CIRCUIT_OPEN",
    "openCircuitBreakers": Array[1][
      "MovieController::findById"           //说明断路器回调到MovieController的findById方法。
    ]
  }

img_9f142ba7617a50fb550f6657297a4527.png
image.png

还有 /hystrix.stream监控信息(不用,会被dashboard代替)
img_6802c42b2576531831e33e498eb2bd54.png
image.png

注意
/health 必须要有actuator的依赖支持

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
相关文章
|
6月前
|
负载均衡 算法 Java
SpringCloud负载均衡源码解析 | 带你从表层一步步剖析Ribbon组件如何实现负载均衡功能
SpringCloud负载均衡源码解析 | 带你从表层一步步剖析Ribbon组件如何实现负载均衡功能
154 0
|
监控 Java 微服务
手把手教你搭建SpringCloud项目(十一)集成Hystrix之服务熔断
手把手教你搭建SpringCloud项目(十一)集成Hystrix之服务熔断
176 0
|
运维 微服务
SpringCloud学习(十四):Hystrix的服务熔断实现
熔断机制是应对雪崩效应的一种微服务链路保护机制。当扇出链路的某个微服务出错不可用或者响应时间太长时,会进行服务的降级,进而熔断该节点微服务的调用,快速返回错误的响应信息。
170 0
SpringCloud学习(十四):Hystrix的服务熔断实现
|
运维 监控 数据可视化
(十二)、Hystrix服务降级
(十二)、Hystrix服务降级
|
Java 开发者 Sentinel
Sentinel 概念和功能|学习笔记
快速学习 Sentinel 概念和功能
128 0
Sentinel 概念和功能|学习笔记
|
设计模式 监控 安全
【Hystrix技术指南】(1)基本使用和配置说明
【Hystrix技术指南】(1)基本使用和配置说明
348 0
|
设计模式 缓存 Java
【Hystrix技术指南】(2)参数配置的详细介绍
【Hystrix技术指南】(2)参数配置的详细介绍
176 0
|
监控 算法 Dubbo
Sentine 与 hystrix 的区别 | 学习笔记
快速学习 Sentine 与 hystrix 的区别