feig整合sentinel出现循环依赖问题
1.场景重现,回顾feign整合sentinel步骤
1.1修改配置,开启sentinel功能
修改OrderService的application.yml文件,开启Feign的Sentinel功能:
feign:
sentinel:
enabled: true # 开启feign对sentinel的支持
1.2编写失败降级逻辑
业务失败后,不能直接报错,而应该返回用户一个友好提示或者默认结果,这个就是失败降级逻辑。给FeignClient编写失败后的降级逻辑
①方式一:FallbackClass,无法对远程调用的异常做处理
②方式二:FallbackFactory,可以对远程调用的异常做处理,我们选择这种
步骤1:在feing-api项目中定义类,实现FallbackFactory:
package cn.itcast.feign.clients.fallback;
import cn.itcast.feign.clients.UserClient;
import cn.itcast.feign.pojo.User;
import feign.hystrix.FallbackFactory;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class UserClientFallBackFactory implements FallbackFactory<UserClient> {
//feign调用失败,给出友好提示
@Override
public UserClient create(Throwable throwable) {
return new UserClient() {
@Override
public User selectById(Long id) {
log.error("调用userservice服务失败",throwable);
return new User();
}
};
}
}
步骤二:在feing-api项目中的FeignClientConf类中将UserClientFallbackFactory注册为一个Bean:
@Bean
public UserClientFallBackFactory userClientFallBackFactory(){
return new UserClientFallBackFactory();
}
步骤三:在feing-api项目中的UserClient接口中使用UserClientFallbackFactory:
package cn.itcast.feign.clients;
import cn.itcast.feign.clients.fallback.UserClientFallBackFactory;
import cn.itcast.feign.pojo.User;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
@FeignClient(value = "userservice",fallbackFactory = UserClientFallBackFactory.class)//引号里面的是要调用的服务名称
public interface UserClient {
@GetMapping("user/{id}")//Controller,请求路径
User selectById(@PathVariable("id") Long id);
}
2.重点来了,做完以上步骤,重启项目,然后就报错了,报错篇幅太大了就不粘贴上来了
2.1主要的报错信息有,上网查大概讲的是出现循环依赖,我也不太理解
Is there an unresolvable circular reference?
我哪里见过此等报错,第一反应是上网查,反反复复查询,终于找到遇到过类似问题的哥们发的帖子,按照他的分析,步骤,最终解决问题;虽然不曾相识,未曾某面,心里十分感谢我大哥,帮助我解决了烦人的bug
2.2根据网上发布的报错分析,主要是的说法有,Spring Cloud和Spring Cloud Alibaba的版本上
当前项目的服务版本:
Spring Boot 版本为:2.3.9.RELEASE
Spring Cloud 版本为:Hoxton.SR10
Spring Cloud Alibaba 版本为:2.2.5.RELEASE
Spring Cloud Gateway:2.2.5.RELEASE
spring官网https://spring.io/projects/spring-cloud 查找spring cloud Hoxton版本对应关系:找到对应的Hoxton.SR10对应各个版本依赖:
可以看到,虽然Hoxton.SR10对spring boot的支持是2.2.x<spring boot<2.3.x
当前项目使用的是spring boot的2.3.9版本符合当前SR10的要求。但是SR10的GateWay支持的版本是2.2.7.RELEASE。当前GateWay版本是2.2.5.RELEASE。版本对应不上,那么,接着在spring 官网找到支持GateWay是2.2.5的。发现SR8是支持的。如下图: