无法解析 org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:unknown

Cannot resolve org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:unknown

我正在按照教程学习尤里卡 server/client 和 spring 引导 当我尝试在 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>

我该如何解决这个问题,为什么会这样?

检查 Spring boot Starter version (2.3.3) 和 Spring Cloud version (2.2.5), 构建失败,我建议使用 Spring Initializer 创建您的项目的 pom/build 文件。

我设法通过在属性中添加 spring 云版本来解决这个问题。

<properties>
    <java.version>11</java.version>
    <spring-cloud.version>Hoxton.SR8</spring-cloud.version>
</properties>

我也在学习教程。

我使用 Spring Boot in IntelliJ 2020.1

创建了一个基本的微服务

我将 spring-cloud-starter-netflix-eureka-client 入门程序添加到我的项目中。

这是添加到 pom.xml 的内容:

<dependency>
  <groupId>org.springframework.cloud</groupId>
  <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>

 <dependency>
  <groupId>org.springframework.cloud</groupId>
  <artifactId>spring-cloud-dependencies</artifactId>
  <version>Hoxton.SR8</version>
  <type>pom</type>
  <scope>import</scope>
</dependency>

重新加载mavenpom.xml文件后,出现找不到依赖项的错误。

这里是错误:

Cannot resolve org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:unknown

我正在使用 Spring Boot 2.3.5.

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.5.RELEASE</version>

解决方案:

由于某些原因,当使用 spring initializr 添加 spring-boot-starter 时,eureka 发现客户端的版本不会自动添加到 pom 中。所以我手动添加了版本:

<version>2.2.5.RELEASE</version>
<dependency>
  <groupId>org.springframework.cloud</groupId>
  <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  <version>2.2.5.RELEASE</version>
</dependency>

然后在刷新 maven pom.xml 依赖关系被识别。

只需在 <dependencies/> 部分之后和 <build/> 部分之前添加此代码:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-parent</artifactId>
            <version>Greenwich.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

在Spring开始,创建项目时, 也带上存储库,这些家伙是基础。

<repositories>
      // DATA
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      // DATA
    </pluginRepository>
    <pluginRepository>
      // DATA
    </pluginRepository>
  </pluginRepositories>

我意识到jar文件已经下载到项目文件夹的“Maven Dependencies”中,但是POM错误仍然存​​在。

解决方法:- 删除 C:\Users.m2 文件夹,然后从 POM 重新加载 maven。

在 pom.xml

中更改 spring 引导版本(和 spring 云版本)
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.5.RELEASE</version>
    <relativePath/> 
</parent>

<properties>
    <java.version>11</java.version>
    <spring-cloud.version>Greenwich.SR1</spring-cloud.version>
</properties>