SpringCloud 仅侦探(对数关联)
2023-11-30 15:47 更新
如果您只想使用Spring Cloud Sleuth而没有Zipkin集成,则将spring-cloud-starter-sleuth
模块添加到您的项目中。
下面的示例演示如何使用Maven添加Sleuth:
Maven.
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${release.train.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-sleuth</artifactId> </dependency>
- 我们建议您通过Spring BOM添加依赖项管理,这样就不必自己管理版本。
- 将依赖项添加到
spring-cloud-starter-sleuth
。
下面的示例演示如何使用Gradle添加Sleuth:
Gradle.
dependencyManagement { imports { mavenBom "org.springframework.cloud:spring-cloud-dependencies:${releaseTrainVersion}" } } dependencies { compile "org.springframework.cloud:spring-cloud-starter-sleuth" }
- 我们建议您通过Spring BOM添加依赖项管理,这样就不必自己管理版本。
- 将依赖项添加到
spring-cloud-starter-sleuth
。
以上内容是否对您有帮助:
更多建议: