天天看點

[SpringCloud] SpringCloud微服務實戰 導入hystrix找不到@HystrixCommand問題

作者使用的是老版本的SpringBoot+SpringCloud, 導入的依賴是:

<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>

繼續閱讀