<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
如果引入上述这个依赖出错后,可以将version标签中的RELEASE删除,再重新Reimport一下。
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
807

被折叠的 条评论
为什么被折叠?



