一、Maven依赖 

<!-- hystrix -->
<dependency>
    <groupId>com.netflix.hystrix</groupId>
    <artifactId>hystrix-core</artifactId>
    <version>1.5.18</version>
</dependency>
<dependency>
    <groupId>com.netflix.hystrix</groupId>
    <artifactId>hystrix-javanica</artifactId>
    <version>1.5.18</version>
</dependency>
<dependency>
    <groupId>de.ahus1.prometheus.hystrix</groupId>
    <artifactId>prometheus-hystrix</artifactId>
    <version>4.0.0</version>
    <exclusions>
        <exclusion>
            <artifactId>simpleclient</artifactId>
            <groupId>io.prometheus</groupId>
        </exclusion>
        <exclusion>
            <artifactId>simpleclient_common</artifactId>
            <groupId>io.prometheus</groupId>
        </exclusion>
        <exclusion>
            <artifactId>hystrix-core</artifactId>
            <groupId>com.netflix.hystrix</groupId>
        </exclusion>
    </exclusions>
</dependency>
Hystrix Maven依赖坐标

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-12
  • 2021-12-20
  • 2021-06-30
  • 2021-12-15
  • 2021-12-24
  • 2022-03-04
猜你喜欢
  • 2021-11-17
  • 2022-12-23
  • 2021-06-24
  • 2021-11-23
  • 2021-04-07
  • 2021-09-16
  • 2021-07-24
相关资源
相似解决方案