加了ComponentScan,但是feign接口无法注入的原因

正文

正确的注入
在这里插入图片描述
如果发现无法注入:看看启动类Application是否有加入注解:@EnableFeignClients(AppConstant.BASE_PACKAGES)

加了ComponentScan,但是feign接口无法注入的原因_第1张图片

注意:EnableFeignClients和ComponentScan是两个独立的扫描,所以,如果只配置了ComponentScan,是不扫描feign接口的。就会出现明明加了注解注入,但是却调不通接口的情况,就是因为没扫描到feign接口

你可能感兴趣的:(技术,JAVA,后端,java)