Skip to content

Commit a11fdce

Browse files
authored
Merge pull request #7 from coderqianlq/dev
🌊 feat(服务链路追踪Sleuth):提供服务链路追踪zipkin
2 parents fc2e9bf + 00b6940 commit a11fdce

File tree

40 files changed

+157
-11
lines changed

40 files changed

+157
-11
lines changed

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111

1212
<modules>
1313
<module>eureka-server</module>
14-
<module>eureka-order</module>
15-
<module>eureka-customer</module>
14+
<module>service-order</module>
15+
<module>service-customer</module>
1616
<module>api-gateway</module>
1717
<module>config-server</module>
1818
<module>feign-server</module>
19+
<module>zipkin-server</module>
1920
</modules>
2021
</project>

eureka-customer/pom.xml renamed to service-customer/pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<groupId>com.coderqian</groupId>
7-
<artifactId>eureka-customer</artifactId>
7+
<artifactId>service-customer</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
99
<packaging>jar</packaging>
1010

11-
<name>eureka-customer</name>
11+
<name>service-customer</name>
1212
<description>Demo project for Spring Boot</description>
1313

1414
<parent>
@@ -68,7 +68,6 @@
6868
<artifactId>spring-cloud-starter-config</artifactId>
6969
</dependency>
7070

71-
7271
<dependency>
7372
<groupId>org.springframework.cloud</groupId>
7473
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
@@ -79,6 +78,11 @@
7978
<artifactId>spring-boot-starter-actuator</artifactId>
8079
</dependency>
8180

81+
<dependency>
82+
<groupId>org.springframework.cloud</groupId>
83+
<artifactId>spring-cloud-starter-zipkin</artifactId>
84+
</dependency>
85+
8286
<dependency>
8387
<groupId>org.springframework.retry</groupId>
8488
<artifactId>spring-retry</artifactId>

0 commit comments

Comments
 (0)