打开已有项目时springboot依赖显示标红,提示:
Project ‘org.springframework.boot:spring-boot-starter-parent:2.5.0’ not found
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.0</version>
</parent>
网上有一种解决方案:重启工程。针对我这种情况没有效果。
后发现maven仓库中配置阿里云仓库有问题。
原来地址为:
https://maven.aliyun.com/nexus/content/repositories/central
最新地址为:
https://maven.aliyun.com/repository/central
maven配置文件中改为最新的仓库地址即可。