Project 'org.springframework.boot:spring-boot-starter-parent:2.3.6.RELEASE' not found
时间: 2023-10-23 18:34:40 浏览: 199
spring-boot-starter-web-2.3.6.RELEASE.jar
您提到的错误信息表明您无法找到名为"org.springframework.boot:spring-boot-starter-parent:2.3.6.RELEASE"的项目。这通常是因为您的构建工具(如Maven或Gradle)无法找到该依赖项。
如果您正在使用Maven,请确保在您的pom.xml文件中正确添加了Spring Boot的父级依赖项:
```xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.6.RELEASE</version>
</parent>
```
如果您正在使用Gradle,请确保在您的build.gradle文件中正确添加了Spring Boot的父级依赖项:
```groovy
plugins {
id 'org.springframework.boot' version '2.3.6.RELEASE'
}
// 省略其他配置
```
请检查您的构建文件是否正确配置,并确保您的构建工具能够访问Spring Boot的库。如果问题仍然存在,请提供更多关于您的项目和构建工具的信息,以便我们能够更好地帮助您解决问题。
阅读全文