今天在使用openfeign和sentinel实现fallback服务降级时遇到找不到类型的异常
检查代码发现没有错误,@EnableFeignClients也在启动类上标注了
错误信息:A component required a bean of type 'com.zxc.cloud.apis.PayFeignSentinelApi' that could not be found.
我们的FeignClient写在公共的模块里面,目录结构是这样的
消费者模块远程调用需要引用公共模块的feignclient接口
那么此时我们需要在pom文件中引入公共模块commons,才能正常使用,检查代码发现模块已经引用
此时我突然看到,消费者模块的目录结构,与公共模块的目录结构不一致
解决:springboot默认的包扫描路径为启动类,及其同级目录的子包里的类,当前项目的目录结构与公共模块的目录结构不一致,所以springboot扫描不到公共模块的组件,所以我们需要手动指定对公共模块的包扫描路径
@SpringBootApplication(scanBasePackages = "com.zxc.cloud.apis")
//@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class Main83 {public static void main(String[] args) {SpringApplication.run(Main83.class,args);}
}