org.springframework.boot:spring-boot-starter-parent’ not found
作者:mmseoamin日期:2023-12-14

一、问题

用 Spring Initializr创建的项目,然后点进pom.xml文件,有好几处变红,且报错,且DemoApplication报无法解析符号 ‘SpringBootApplication’

org.springframework.boot:spring-boot-starter-parent’ not found,第1张

 现在这个文件无法启动,且java无法创建类和接口,点击下方加载maven项目就好了

然后现在开始变红报错了,说无法解析符号 'SpringBootApplication'

org.springframework.boot:spring-boot-starter-parent’ not found,第2张

 以下是pom.xml开始报错

下面这个说找不到项目 'org.springframework.boot:spring-boot-starter-parent:3.1.2.RELEASE' 

org.springframework.boot:spring-boot-starter-parent’ not found,第3张

 下面这个说找不到依赖项 'org.springframework.boot:spring-boot-starter-test:' 

org.springframework.boot:spring-boot-starter-parent’ not found,第4张

 二、解决

我把这个地方换成了2.1.8这个版本就好了

org.springframework.boot:spring-boot-starter-parent’ not found,第5张

 然后下方也不变红,报错了

org.springframework.boot:spring-boot-starter-parent’ not found,第6张

 然后点击maven刷新一下就好了

org.springframework.boot:spring-boot-starter-parent’ not found,第7张

 DemoApplication文件也不报错了

org.springframework.boot:spring-boot-starter-parent’ not found,第8张

运行时报java: 错误: 无效的源发行版:16

org.springframework.boot:spring-boot-starter-parent’ not found,第9张

 然后把这个地方的17改成8

org.springframework.boot:spring-boot-starter-parent’ not found,第10张

 org.springframework.boot:spring-boot-starter-parent’ not found,第11张

 把下方的两个16都改成8,然后刷新一下maven就好了

org.springframework.boot:spring-boot-starter-parent’ not found,第12张

 org.springframework.boot:spring-boot-starter-parent’ not found,第13张

这样就能运行成功了

org.springframework.boot:spring-boot-starter-parent’ not found,第14张