Sentinel整合OpenFeign配置容错设计实战

Feign在调用远程服务的时候,由于远程服务的原因,可能会产生异常。就需要进行相应的容错设计。当Feign远程调用服务出现问题后,进入到了容错工厂类中的同名方法,执行容错逻辑。而且,Feign调用产生的异常信息也可以获取到

Sentinel · alibaba/spring-cloud-alibaba Wiki · GitHub

1.加入依赖

       <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
      
        </dependency>
       

2.开启Feign对Sentinel的支持

#开启Feign对Sentinel的支持
feign:
  sentinel:
    enabled: true

3.配置feign容错类

@FeignClient(name = "order-service-app" ,fallback = OrderServiceClientFallback.class)
public interface OrderServiceClient {
    @GetMapping("/api/order/test")
    String test();

}

一定要将Fallback实例注册到IOC容器

@Component 
public class OrderServiceClientFallback implements OrderServiceClient {
    @Override
    public String test() {
        return "降级了";
    }
}

4.验证(了解)

限流的资源规则提供两种粒度:

httpmethod:schema://host:port/path:协议、主机、端口和路径

httpmethod:schema://host:port:协议、主机和端口

例子:以http://www.a.com/test这个url并使用GET方法为例。

对应的资源名有两种粒度,分别是

GET:https://www.a.com

GET:https://www.a.com/test

5.扩展(了解)

@FeignClient中fallback 与 fallbackFactory 区别?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

这孩子叫逆

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值