错误:不可解析的父POM:无法传输工件org.springframework.boot:spring-boot-starter-parent:pom

问题描述 投票:0回答:4

尝试运行我的应用程序时,我在 pom.xml 中遇到以下异常。我看到了一些关于该错误的帖子并关注了它们,但没有用。我知道工件(父级)是在本地引用的并且不存在,但我不知道如何解决这个问题,有人可以帮助我吗?

错误是

Project build error: Non-resolvable parent POM for com.example:demo:0.0.1-SNAPSHOT: Failure 
 to transfer org.springframework.boot:spring-boot-starter-parent:pom:1.5.18.BUILD-SNAPSHOT 
 from https://repo.spring.io/snapshot was cached in the local repository, resolution will not be 
 reattempted until the update interval of spring-snapshots has elapsed or updates are forced. 
 Original error: Could not transfer artifact org.springframework.boot:spring-boot-starter-
 parent:pom:1.5.18.BUILD-SNAPSHOT from/to spring-snapshots (https://repo.spring.io/
 snapshot): repo.spring.io and 'parent.relativePath' points at no local POM

下面是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>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.18.BUILD-SNAPSHOT</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>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jersey</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>spring-snapshots</id>
            <name>Spring Snapshots</name>
            <url>https://repo.spring.io/snapshot</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
        <repository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>https://repo.spring.io/milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>spring-snapshots</id>
            <name>Spring Snapshots</name>
            <url>https://repo.spring.io/snapshot</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
        <pluginRepository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>https://repo.spring.io/milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>


</project>
spring-boot maven-3 pom.xml
4个回答
0
投票
  1. 将 Spring Boot Starter 降级到较低版本。
  2. 更新 Maven 项目。

希望它有效。


0
投票

您使用的 Spring Boot 版本存在问题,因为它是构建版本。只需复制 1.X 的另一个发行版本并替换即可。

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId> 
    <version>1.5.17.RELEASE</version>
    <relativePath/>
    <!-- lookup parent from repository -->
</parent>

0
投票

如果您可以从浏览器访问 url https://repo.spring.io/snapshot/,则可能是 Maven 问题。 Maven 无法连接到存储库,这可能是由于:

  1. 下载的依赖项中的任何缓存问题。尝试删除本地依赖项,然后尝试此处提供的解决方案。

  2. 尝试 Maven 更新和 Maven Clean。

  3. 执行上述操作后尝试重新打开 IDE。


0
投票

您的 pom.xml 没问题,看来是您的互联网连接有问题。检查您是否可以使用浏览器访问https://repo.spring.io/snapshot/。如果是,请检查是否需要配置代理服务器。如果没有,您应该联系您的互联网提供商。

这里是关于如何为 Maven 配置代理服务器的 文档

© www.soinside.com 2019 - 2024. All rights reserved.