@EnableHystrixDashboard注解无法引入

Posted timelessmemoryli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@EnableHystrixDashboard注解无法引入相关的知识,希望对你有一定的参考价值。

出现问题时就想到可能是版本问题 我的springboot版本2.0.6

原来引入的是

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

改为

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

以上是关于@EnableHystrixDashboard注解无法引入的主要内容,如果未能解决你的问题,请参考以下文章

enablehystrixdashboard 怎么引用不了

Hystrix仪表板主页加载jquery失败

Java 注解自定义注解 ( 注解解析 )

Java 注解自定义注解 ( 使用注解实现简单测试框架 )

Java自定义注解的使用

Spring组合注解与元注解