springcloud -记录一个卡了很久的问题
在使用feign的时候,创建了一个feginService接口
但是在启动的时候一直报
org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name feginService Requested bean is currently in creation: Is there an unresolvable circular reference
试了很多办法:比如检查启动类有没有加@EnableFeignClients,找了一些帖子,加basePackages
@EnableFeignClients("org.spring")还是不行
然后检查是不是真的循环依赖问题…………
解决方案:
1、检查Spring Cloud和Spring Boot版本是否一致;
2、检查是否加入的feign是否生效
3、此外,在检查使用的feign是否为非正式版本
检查了这三个问题,此问题解决