org.springframework.boot:spring-boot-starter-parent:pom:3.2.2.RELEASE was not found
作者:mmseoamin日期:2024-03-20

原因及解决方法:

一、未配置国内镜像阿里云,导致JAR包下载失败

settings.xml里面配置镜像


alimaven
aliyun maven
http://maven.aliyun.com/nexus/content/repositories/central/
central

二、父版本太高了,降低版本

//以前版本

    org.springframework.boot
    spring-boot-starter-parent
    3.2.2
	 

//现在版本

    org.springframework.boot
    spring-boot-starter-parent
    3.0.2
	 

另社区版本的IDEA 2021.3.3 下载插件spring initializer and assistant,即可创建spring项目

org.springframework.boot:spring-boot-starter-parent:pom:3.2.2.RELEASE was not found,第1张

注:2019版本和2023版本下载安装会出现各种配置问题,故选择2021.3.3版本IDEA,它可以下载JDK与MAVEN,节约了配置JDK的时间。

现在主流推广JDK17