IDEA报错:Project ‘org.springframework.boot:spring-boot-starter-parent:2.3.6.RELEASE‘ not found
·
今天开发
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.3</version>
</parent>
我本来用的是2.4.3,leader让我用2.3.6.RELEASE,
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.6.RELEASE</version>
</parent>
然后我改成2.3.6.RELEASE,可是报错
IDEA报错:Project ‘org.springframework.boot:spring-boot-starter-parent:2.3.6.RELEASE‘ not found
一直困惑了我很久,最终功夫不负有心人
https://blog.csdn.net/weixin_42236404/article/details/84073969
这篇博客有一个人的评论“因为你本地仓库里有2.0.0的,作者的本地仓库里是2.0.6的,但问题的根本原因在于父依赖项的索引被idea给缓存起来了。Invalidate Caches/Restart一下就解决了。”
我按照他的建议Invalidate Caches/Restart一下项目就好了
项目中也有2.3.6.RELEASE了。
.m2\repository\org\springframework\boot\spring-boot-starter\2.3.6.RELEASE。
Invalidate Caches/Restart,看来在idea中遇到问题并尝试网上的解决方案,问题还无法解决的时候,要想着清理缓存重启试试。
更多推荐
已为社区贡献1条内容
所有评论(0)