1 问题
从spring官网当了个springboot项目,pom.xml文件如下两行一直飘红
<artifactId>spring-boot-starter-parent</artifactId> <version>2.7.2</version>
提示报错,not found
2 解决方案:
2.1 未解决_降低版本
和大多数人想法一样,我觉得是spring官网出的新版本,阿里云镜像没有对应的映射版本,所以尝试了降低版本,结果未解决
2.3 解决_invalidate cashes
从网上尝试用不同的组合搜,spring-boot-starter-parent + idea飘红,spring-boot-starter-parent + settings.xml ,终于搜到一种方案,
解决方法:File -> Invalidate Caches / Restart… -> Invalidate and Restart。
3 问题原因
无
诸葛