美文网首页
找不到@HystrixCommand标签

找不到@HystrixCommand标签

作者: 蠢白的寄语 | 来源:发表于2019-12-11 11:44 被阅读0次

    Spring cloud中整合Hystrix时,无法识别@HystrixCommand标签,项目的Hystrix依赖为:

    <dependency>

          <groupId>org.springframework.cloud</groupId>

          <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>

    </dependency>

    查了一下,@HystrixCommand注解是由名为javanica的Hystrix contrib库提供的。javanica是一个Hystrix的子项目,用于简化Hystrix的使用。所以,还需要添加一个依赖:

    <dependency>

      <groupId>com.netflix.hystrix</groupId>

      <artifactId>hystrix-javanica</artifactId>

      <version>RELEASE</version>

    </dependency>

    相关文章

      网友评论

          本文标题:找不到@HystrixCommand标签

          本文链接:https://www.haomeiwen.com/subject/oojogctx.html