Java--IDEA报错Project ‘org.springframework.boot:spring-boot-starter-parent:2.2.0.RELEAS
时间: 2023-10-05 12:08:53 浏览: 198
ant-design-vue-2.2.0-beta.1.zip
这个错误通常是因为 Maven 无法下载指定版本的 Spring Boot Starter Parent。可以尝试以下几种解决方法:
1. 检查网络连接是否正常,确保能够访问 Maven 仓库。
2. 清理 Maven 本地仓库,删除 ~/.m2/repository/org/springframework/boot 目录下的所有文件,然后重新构建项目。
3. 尝试使用其他版本的 Spring Boot Starter Parent,可以在 pom.xml 中将版本修改为 2.2.1.RELEASE 或其他版本。
4. 尝试使用阿里云 Maven 仓库代替默认的 Maven 仓库,可以在 pom.xml 中添加以下配置:
```xml
<repositories>
<repository>
<id>aliyun</id>
<url>https://maven.aliyun.com/repository/public</url>
</repository>
</repositories>
```
希望这些方法能够帮助你解决问题。
阅读全文