我是靠谱客的博主 粗暴月亮,最近开发中收集的这篇文章主要介绍【Spring Cloud】Finchley版本hystrix的@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注解即可使用
@SpringBootApplication
@EnableHystrixDashboard
public class HystrixActuatorServerApplication{
public static void main( String[] args )
{
SpringApplication.run(HystrixActuatorServerApplication.class,args);
}
}
最后
以上就是粗暴月亮为你收集整理的【Spring Cloud】Finchley版本hystrix的@EnableHystrixDashboard注解无法使用解决方法的全部内容,希望文章能够帮你解决【Spring Cloud】Finchley版本hystrix的@EnableHystrixDashboard注解无法使用解决方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复