【Spring Cloud】Finchley版本hystrix的@EnableHystrixDashboard注解无法使用解决方法

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


	com.netflix.hystrix
	hystrix-javanica
	RELEASE


	org.springframework.cloud
	spring-cloud-netflix-hystrix-dashboard

代替

 
      org.springframework.cloud
      spring-cloud-starter-netflix-hystrix

@EnableHystrixDashboard注解即可使用

@SpringBootApplication
@EnableHystrixDashboard
public class HystrixActuatorServerApplication{

	public static void main( String[] args )
	{
		SpringApplication.run(HystrixActuatorServerApplication.class,args);
	}
}

【Spring Cloud】Finchley版本hystrix的@EnableHystrixDashboard注解无法使用解决方法_第1张图片

你可能感兴趣的:(【Spring Cloud】Finchley版本hystrix的@EnableHystrixDashboard注解无法使用解决方法)