org.springframework.boot:spring-boot-starter-parent’ not found

一、问题

用 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张图片

你可能感兴趣的:(java,开发语言,spring,boot)