赞
踩
1.pom.xml
- <properties>
- <java.version>1.8</java.version>
- <spring-cloud.version>Finchley.SR1</spring-cloud.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-dependencies</artifactId>
- <version>${spring-cloud.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </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>
- </dependencies>
2、application.yml
- spring:
- application:
- name: service-hystrix-dashboard
- server:
- port: 8605
3、启动类
- @EnableHystrixDashboard
- @SpringBootApplication
- public class EurekaClientHystrixDashboardApplication {
-
- public static void main(String[] args) {
- SpringApplication.run(EurekaClientHystrixDashboardApplication.class, args);
- }
-
- }
4、访问页面
4、进入页面
以上图来说明其中各元素的具体含义:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。