- 创建项目
- 配置文件
- 启动类
- pom文件
- 验证
一.创建项目
选取turbine作为服务聚合监控组件
创建maven项目flow-turbine(8791)作为子模块
二.配置文件
application-turbine-dev.yml, 内容如下:
# dev_config
spring:
application:
name: turbine
server:
port: 8791
eureka:
instance:
lease-renewal-interval-in-seconds: 5
lease-expiration-duration-in-seconds: 10
client:
service-url:
# 单个配置
# defaultZone: http://localhost:8761/eureka/
# 集群配置
defaultZone: http://127.0.0.1:8761/eureka/, http://127.0.0.1:8762/eureka/
# turbine_config
turbine:
app-config: eureka-consumer-ribbon, eureka-consumer-feign
aggregator:
cluster-config: default
cluster-name-expression: new String("default")
combine-host-port: true
management:
endpoints:
web:
exposure:
include: "*"
cors:
allowed-origins: "*"
allowed-methods: "*"
info:
company.name: org.flowframework
app.name: turbine
app.desc: springcloud-turbine
author: robin
三.启动类
Application.java
@EnableEurekaClient
@EnableHystrixDashboard
@EnableTurbine
@SpringBootApplication
public class Application extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
return builder.sources(Application.class);
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
四.pom文件
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.flowframework</groupId>
<artifactId>flow-turbine</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>org.flowframework</groupId>
<artifactId>springcloud</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<dependencies>
<!-- eureka-client -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<!-- hystrix -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
</dependency>
<!-- turbine -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-turbine</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
</dependencies>
<build>
<finalName>flow-turbine</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
</project>
五.验证
http://localhost:8791/hystrix
地址–http://localhost:8791/turbine.stream
Delay–2000ms
Title–turbine
Monitor Stream
http://localhost:8781/hello/robin
http://localhost:8782/hello/feign/robin
http://localhost:8761/