项目 'org.springframework.boot:spring-boot-starter-parent:2.4.0' 未找到

2022-09-01 14:50:01

我遵循本指南:https://spring.io/guides/gs/serving-web-content/

<?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>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.0</version>
        <relativePath/>
    </parent>

    <groupId>org.example</groupId>
    <artifactId>plats-bruts</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</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>
        <optional>true</optional>
    </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>

但我在pom上有这个问题:

Project 'org.springframework.boot:spring-boot-starter-parent:2.4.0' not found

但它在这里 https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent/2.4.0


答案 1

我刚刚遇到了类似的问题。我正在使用IntelliJ IDEA Ultimate 2020.2。版本号 2.4.0 为红色,消息与您的消息相同。

正在选择文件 ->使缓存失效/重新启动...并选择“失效并重新启动”选项解决了该问题。我想这只是一个陈旧的缓存。


答案 2

对我有用的是重新构建和远程缓存,然后是本地缓存。以下是我遵循的步骤(在Mac上,请转换为您的目标环境):

  1. 转到首选项菜单:即:IntelliJ IDEA >首选项
  2. 在“构建工具”下:即:“构建、执行、部署”>构建工具
  3. 选择存储库:即:Maven >存储库
  4. 请注意“远程和本地存储库”,以及“更新”按钮
  5. 选择每个存储库,然后单击更新。这将需要一段时间,具体取决于您的互联网速度,但它将对损坏的下载和陈旧的Maven缓存进行全面检查

推荐