我正在遵循一个教程来学习带Spring Boot Eureka 服务器/客户端,当我试图在pom.xml
中安装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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.nlimits</groupId>
<artifactId>movie_info_service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>movie_info_service</name>
<description>Movie Info Service</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
我怎样才能解决这个问题,为什么会发生这种情况?
8条答案
按热度按时间nxowjjhe1#
我也在遵循一个教程。
我在IntelliJ 2020.1中使用Sping Boot 创建了一个基本微服务
我在项目中添加了
spring-cloud-starter-netflix-eureka-client
启动器。以下是添加到
pom.xml
的内容:重新加载maven
pom.xml
文件后,我收到了未找到依赖项的错误。下面是错误:
无法解析org.springframework.cloud:未知
我使用的是Sping Boot 2.3.5。
解决方案:
由于某种原因,在使用spring initializr添加spring-boot-starter时,Eureka 发现客户端的版本并没有自动添加到pom中,所以我手动添加了这个版本:
一个二个一个一个
然后在刷新maven pom.xml之后,识别出依赖关系。
5q4ezhmt2#
只需在
<dependencies/>
部分之后和<build/>
部分之前添加以下代码:epggiuax3#
通过在属性中添加spring cloud版本,我设法解决了这个问题。
envsm3lx4#
检查Sping Boot Starter版本(2.3.3)和Spring Cloud版本(2.2.5),它无法完成您的构建,我建议使用Spring Initializer为您的项目创建pom/build文件。
7tofc5zh5#
在pom.xml中更改 Boot 版本(和springcloud版本
dddzy1tm6#
我意识到jar文件被下载到项目文件夹中的“Maven依赖项”中,但POM错误仍然存在。
解决方案:-删除C:\Users. m2文件夹,然后从POM重新加载maven。
wydwbb8l7#
手动添加Eureka 发现客户端的版本可以帮助解决这个问题,我添加了这个版本,它工作了。
2o7dmzc58#
在Spring Start,当创建项目时,也需要存储库,这些家伙是基础。