idea创建spring项目后报错‘org.springframework.boot:spring-boot-starter-parent:2.7.3‘ not found

错误提示

'org.springframework.boot:spring-boot-starter-parent:2.7.3' not found

出现原因

创建新项目后spring-boot-starter-parent找不到,原因在于新建项目选择了spring-boot-starter-parent新版本,而缓存中还是使用的老版本导致。
idea默认缓存maven本地库中的依赖库,在新建项目时会直接到缓存中寻找依赖库。如果相同库只是修改版本会导致idea无法从缓存中依赖到相应的库
idea创建spring项目后报错‘org.springframework.boot:spring-boot-starter-parent:2.7.3‘ not found_第1张图片

解决办法

删除原来的缓存和索引,让idea重新创建缓存和索引即可。
点击File -> Invalidate Caches…
idea创建spring项目后报错‘org.springframework.boot:spring-boot-starter-parent:2.7.3‘ not found_第2张图片
然后选择Invalidata and Restart
idea创建spring项目后报错‘org.springframework.boot:spring-boot-starter-parent:2.7.3‘ not found_第3张图片
重启后,idea会重新加载,如果不行就右键pom.xml -> maven -> Reload project
idea创建spring项目后报错‘org.springframework.boot:spring-boot-starter-parent:2.7.3‘ not found_第4张图片

你可能感兴趣的:(spring,java,idea,spring-boot)