当前位置: 代码迷 >> 综合 >> [SpringCloud] SpringCloud微服务实战 导入hystrix找不到@HystrixCommand问题
  详细解决方案

[SpringCloud] SpringCloud微服务实战 导入hystrix找不到@HystrixCommand问题

热度:124   发布时间:2023-09-19 21:19:50.0

作者是使用的就老版本的SpringBoot+SpringCloud, 导入的依赖是:

  1. <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-hystrix</artifactId>
    </dependency>

对于Spring Boot 2.0+Spring Cloud Finchley, 应该使用

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>

  相关解决方案