• SpringCloud: feign整合sentinel实现降级


    一、加依赖:

    
    
        4.0.0
    
        cn.edu.tju
        springbootcircuitbreaker
        1.0-SNAPSHOT
    
        
            org.springframework.boot
            spring-boot-starter-parent
            2.6.6
        
    
        
            
                
                    org.springframework.cloud
                    spring-cloud-dependencies
                    2021.0.1
                    pom
                    import
                
    
                
                    com.alibaba.cloud
                    spring-cloud-alibaba-dependencies
                    2021.0.1.0
                    pom
                    import
                
            
        
    
        
            
                org.springframework.boot
                spring-boot-starter-web
            
    
            
                com.alibaba.cloud
                spring-cloud-starter-alibaba-nacos-discovery
            
    
            
                org.springframework.cloud
                spring-cloud-starter-openfeign
            
    
            
                org.springframework.cloud
                spring-cloud-starter-loadbalancer
            
    
    
    
            
                com.alibaba.cloud
                spring-cloud-starter-alibaba-sentinel
            
            
                com.alibaba.csp
                sentinel-datasource-nacos
            
    
            
                org.springframework.cloud
                spring-cloud-starter-bootstrap
            
    
            
                com.google.guava
                guava
                30.0-jre
            
    
            
                com.google.code.gson
                gson
                2.8.6
            
    
        
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89

    二、配置文件启用feign对sentinel的支持:

    feign:
      sentinel:
        enabled: true
    
    • 1
    • 2
    • 3

    三、定义被调用的接口:

    package cn.edu.tju.controller;
    
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    public class StockController {
        @RequestMapping("/getStock")
        public String getStock(){
            int t = 1 / 0;
            return "getStock";
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    四、定义FeignClient及降级类:

    package cn.edu.tju.service;
    
    import org.springframework.cloud.openfeign.FeignClient;
    import org.springframework.web.bind.annotation.RequestMapping;
    
    @FeignClient(value = "circuit-breaker", fallback = MyFallbackService.class)
    public interface StockService {
        @RequestMapping("/getStock")
        String getStock();
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    package cn.edu.tju.service;
    
    import org.springframework.stereotype.Component;
    
    @Component
    public class MyFallbackService implements StockService{
        @Override
        public String getStock() {
            return "degraded get stock";
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    五、定义controller,注入@FeignClient

    package cn.edu.tju.controller;
    
    import cn.edu.tju.service.StockService;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    public class DegradeController {
        @Autowired
        private StockService stockService;
    
        @RequestMapping("/getDegrade")
        public String getDegrade(){
            return stockService.getStock();
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    六、接口调用结果:
    在这里插入图片描述

  • 相关阅读:
    逍遥自在学C语言 | 位运算符&的高级用法
    python 方法加强@ pytho中@ python@
    01. 汇编LED驱动实验
    kubernetes搭建笔记(一)——安装kubeadm
    Java基础27,28(多线程,ThreadMethod ,线程安全问题,线程状态,线程池)
    【pytorch】内容链接汇总
    etcd java 客户端jetcd库踩坑日志
    cadence SPB17.4 - 中文UI设置
    【老生谈算法】matlab实现AHP算法源码——AHP算法
    Read Completion Boundary (RCB)切分规则
  • 原文地址:https://blog.csdn.net/amadeus_liu2/article/details/133895538