@EnableHystrixDashboard注解无法使用解决方法

查阅了相关资料,由于是spring boot 2.0.X版本问题,所以使用

<dependency>
    <groupId>com.netflix.hystrix</groupId>
    <artifactId>hystrix-javanica</artifactId>
    <version>RELEASE</version>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-netflix-hystrix-dashboard</artifactId>
</dependency>

代替 

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


@EnableHystrixDashboard注解即可使用
 

原文:https://blog.csdn.net/qq654129588/article/details/83501633 

猜你喜欢

转载自blog.csdn.net/baidu_23275675/article/details/88061325