Feign中使用hystrix功能和@EnableFeignClients和@ComponentScan注解的一个坑

在学习SpringCloud Finchley.SR1和SpringBoot 2.0.1.RELEASE版本时,遇到@EnableFeignClients和@ComponentScan注解配置不当导致的错误。错误表现为无法找到handler method。通过调整扫描路径并启用feign.hystrix.enabled配置,成功解决断路器问题。尽管IDEA显示配置属性未解析,但在实际运行中Hystrix功能仍能生效。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

跟着尚硅谷的SpringCloud教程学的,然后在写代码的时候用了比较新的版本去替代视频里的教学版本。

使用SpringCloud的Finchley.SR1版本

使用SpringBoot的2.0.1.RELEASE版本

在学到hystrix断路器的时候

由于@EnableFeignClients和@ComponentScan注解的时候,由于包路径设置不正确,导致错误。

错误重现

这是microservicecloud-consumer-dept-feign中主启动类,这里包路径扫描到了com.atguigu.spring的下面一层

@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients(basePackages= {"com.atguigu.spring.microservicecloudconsumerdeptfeign"})
@ComponentScan("com.atguigu.spring.microservicecloudapi")
public class MicroservicecloudConsumerDeptFeignApplication {

    public static void main(String[] args) {
        SpringApplication.run(MicroservicecloudConsumerDeptFeignApplication.class, args);
    }
}

这是对应的目录结构

按地址访问后如下

日志不报错,于是开启debug级别的日志查看

2018-09-27 15:27:44.084 DEBUG 2283 --- [nio-8088-exec-4] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/consumer/dept/list]
2018-09-27 15:27:44.084 DEBUG 2283 --- [nio-8088-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /cons
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值