问题描述
在项目使用open feign过程中,我曾经在gateway中去调用其他服务的时候,发现经常性有fallback的情况发生,然后报了503后,就没下文了。。。,很显然是fallback未生效。
解决方案
前提:我使用了Spring Cloud Alibaba全家桶
- 添加依赖
<dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId> </dependency>
- 修改或者添加
bootstrap.yml
feign: sentinel: enabled: true