IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringCloud案例day03.md -> 正文阅读

[Java知识库]SpringCloud案例day03.md

Hystrix

1:Rest实现服务熔断

测试Service-A是正常的
http://localhost:9001/person/find/1

然后让Cosumer-C9006去访问服务A

(1)引入hystrix的依赖
在工程中添加Hystrix的相关依赖

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

(2)在启动类中激活Hystrix
在启动类中添加 @EnableCircuitBreaker 注解开启对熔断器的支持。

@SpringBootApplication
//激活eurekaClient
@EnableEurekaClient
//@EnableDiscoveryClient
@EnableFeignClients
@EnableCircuitBreaker
public class C9006 {

    //创建RestTemplate,由@Bean将实例放到spring容器里面
    @Bean
    @LoadBalanced
    RestTemplate restTemplate(){
        RestTemplate r = new RestTemplate();
        return r;
    }
    public static void main(String[] args) {
        SpringApplication.run(C9006.class,args);
    }
}

(3)配置熔断触发的降级逻辑
(4)在需要收到保护的接口上使用@HystrixCommand配置

@RestController
@RequestMapping("/testHystrixRest")
public class TestHystrixRestController {

    @Autowired
    private RestTemplate restTemplate ;

    @RequestMapping(method = RequestMethod.GET,value = "/get/{id}")
    @HystrixCommand(fallbackMethod = "error")
    public Person getByID(@PathVariable Long id){
        Person p = restTemplate.getForObject("http://Service-A9001/person/find/"+id,Person.class);
        return p;
    }
    //降级方法,默认值,在不能正常访问ServieA获取的数据
    public Person error(Long id){
        Person p = new Person();
        p.setId(id);
        p.setName("当前是服务降级方法的数据,为了快速返回结束9006");
        return p;
    }
}

注意事项:

(1)因为熔断的降级逻辑方法必须跟正常逻辑方法保证: 相同的参数列表和返回值声明

(2)在 getByID 方法上 HystrixCommand(fallbackMethod = “error”) 用来声明一个降级逻辑的方法

(3)测试的话只要打开A服务,B服务,先访问B服务
对比,关闭A服务,再访问B服务

2:Feign实现服务熔断

测试Service-A是正常的
http://localhost:9001/person/find/1

然后让Cosumer-C9006去访问服务A

编写Feign

@FeignClient(name="Service-A9001")
public interface ServiceAFeigin {
    @RequestMapping(method = RequestMethod.GET,value = "person/find/{id}")
    public Person findById(@PathVariable Long id);
}

调用Feign

@RestController
@RequestMapping("/useHystrixFeign")
public class TestHystrixFeignController {
    @Autowired
    ServiceAFeigin feigin;
    @RequestMapping(method = RequestMethod.GET,value = "/get/{id}")
      public Person getByID(@PathVariable Long id){
        Person p =feigin.findById(id);
        return p;
    }
}

》1:在Feign中已经内置了hystrix,但是默认是关闭的需要在工程的 application.yml 中开启对hystrix的支持

feign:
  hystrix: #在feign中开启hystrix熔断
    enabled: true

》2:配置FeignClient接口的实现类
基于Feign实现熔断降级,那么降级方法需要配置到FeignClient接口的实现类中
package com.dev1.feign.impl;

@Component
public class ServiceAFeignFallBack implements ServiceAFeigin {
    @Override
    public Person findById(Long id) {
        Person person = new Person();
        person.setId(id);
        person.setName("我是服务降级Fein");
        return person;
    }
}

》3:修改FeignClient添加hystrix熔断
在@FeignClient注解中添加降级方法
@FeignClient 注解中以fallback声明降级方法

@FeignClient(name="Service-A9001",fallback = ServiceAFeignFallBack.class)
public interface ServiceAFeigin {
    @RequestMapping(method = RequestMethod.GET,value = "person/find/{id}")
    public Person findById(@PathVariable Long id);
}

3:Dashborad服务监控

在Cosumer-C9007中添加

》1:添加依赖

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

》2:在Application中添加

@EnableHystrixDashboard

》3:添加application.yml配置

management:
  endpoints:
    web:
      exposure:
        include: '*'

》4:访问测试

http://localhost:9006/hystrix

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-uUOdCV20-1663638365668)(index_files/96a9d398-f23d-4cae-b7d7-de1aee0695f1.jpg)]

输入监控断点展示监控的详细数据

http://localhost:9006/actuator/hystrix.stream

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-5jq71aDx-1663638365668)(index_files/a4203016-4797-4468-ad36-5cdf25ebe4bb.png)]

说明:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Jl36nATO-1663638365669)(index_files/e446c166-480d-4ceb-9064-4b7ec24a7d87.jpg)]

4:Turbine聚合监控

》1:添加依赖

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

》2:进行application.yml的配置

server:
  port: 9007
spring:
  application:
    name: Turbine-C9007
eureka:
  instance:
    prefer-ip-address: true #使用ip地址注册
    instance-id:  ${spring.cloud.client.ip-address}:${server.port} #向注册中心中注册服务id
    lease-renewal-interval-in-seconds: 5 #向注册中心中注册服务id
    lease-expiration-duration-in-seconds: 10 #续约到期的时间
  client:
    service-url:
      defaultZone: http://localhost:9000/eureka/,http://localhost:8000/eureka/

turbine:
  # 要监控的微服务列表,多个用,分隔
  appConfig: Cosumer-C9006
  clusterNameExpression: "'default'"

》3:在启动中开启

@SpringBootApplication
@EnableTurbine
@EnableHystrixDashboard
public class C9007 {


    public static void main(String[] args) {
        SpringApplication.run(C9007.class,args);
    }
}

》4:测试

http://localhost:9007/turbine.stream
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-09-25 23:07:16  更:2022-09-25 23:07:45 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 8:43:53-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码