Project 'org.springframework.boot:spring-boot-starter-parent:3.0.9' not found
时间: 2023-08-24 11:11:49 浏览: 313
advanced_descriptors-3.0.9.post0-cp37-cp37m-win32.whl.zip
回答: 当你在创建SpringBoot项目时报错"Project 'org.springframework.boot:spring-boot-starter-parent:3.0.9' not found"时,这通常是由于项目的依赖配置有误导致的。根据你提供的引用内容,可以看出Spring Boot的依赖版本是由spring-boot-starter-parent来管理的。而在你的项目中,可能没有正确引入spring-boot-starter-parent的版本号。[2]在你的项目的pom.xml文件中,应该添加如下的依赖配置来引入spring-boot-starter-parent的版本号:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.0</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
请确保你的pom.xml文件中有这样的配置,并且版本号与你所需的版本号一致。这样就能解决"Project 'org.springframework.boot:spring-boot-starter-parent:3.0.9' not found"的问题了。
阅读全文