SpringCloud找不到@HystrixCommand标签

版本声明:

  SpringCloud:Greenwich.SR4

   SpringBoot:2.1.9.RELEASE

解决方案:

添加坐标

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

  <dependency>
            <groupId>com.netflix.hystrix</groupId>
            <artifactId>hystrix-javanica</artifactId>
            <version>RELEASE</version>
  </dependency>
原文地址:https://www.cnblogs.com/arebirth/p/springcloudhystrixnotfoundcommand.html