java – Spring Sleuth和Zipkin:找不到神器io.zipkin.brave:br
发布时间:2020-12-15 08:25:32 所属栏目:Java 来源:网络整理
导读:我有一个 Spring Boot 2.0.0 REST服务,我试图让Sleuth和Zipkin将踪迹发送到我的localhost Zipkin服务器. 该应用程序运行良好,我将两个依赖项spring-cloud-starter-sleuth和spring-cloud-sleuth-zipkin添加到我的pom.xml中.一旦我这样做,我现在得到一个编译错
我有一个
Spring Boot 2.0.0 REST服务,我试图让Sleuth和Zipkin将踪迹发送到我的localhost Zipkin服务器.
该应用程序运行良好,我将两个依赖项spring-cloud-starter-sleuth和spring-cloud-sleuth-zipkin添加到我的pom.xml中.一旦我这样做,我现在得到一个编译错误:
通过删除我的.m2文件夹并更新(两次),我确保它不是一个损坏的Maven包问题. 为什么我会收到此错误,如何解决? 这是我的pom.xml: <?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>io.urig</groupId> <artifactId>inventory</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>inventory</name> <description>Demo project for Spring Boot</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.0.RELEASE</version> <relativePath /> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <spring-cloud.version>Finchley.M8</spring-cloud.version> <sleuth.version>2.0.0.M8</sleuth.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency> <!-- Sleuth automatically adds trace interceptors when in the classpath --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-sleuth</artifactId> </dependency> <!-- Sends trace data to zipkin over http (defaults to http://localhost:9411/api/v2/spans) --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-sleuth-zipkin</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <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> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-sleuth</artifactId> <version>${sleuth.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> </project> 解决方法
这真的很奇怪,因为你正在使用最新的版本,而在GitHub中,spring-cloud-sleuth取决于< brave.version> 4.17.2< /brave.versionu0026gt;.而且我认为maven repo中不存在4.16.3-SNAPSHOT版本. (刚检查过2.0.0.M8取决于此版本) 如果您更改为< sleuth.version> 2.0.0.M7< /sleuth.versionu0026gt;它确实找到了所需的依赖项.
https://github.com/spring-cloud/spring-cloud-sleuth/blob/master/pom.xml
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |