Spring boot Hystrix Dashboard项目
理论知识请点击 hystrix理论
创建一个springboot项目Dashboard服务项目
本地没有的可以去官网勾选下载一个https://spring.io
maven项目
POM文件 引入hystrix的jar包
#dashboard sprinboot的jar包
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
#hystrix客户端包
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
application.yml
spring.application.name=hystrixspringboot
eureka.client.service-url.defaultZone= ##可以配置也可以不配置
server.port=9001
在启动类main方法上面加上注解,注解意思是启用Dashboard
@EnableHystrixDashboard