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 区别?