Cannot resolve org.springframework.boot:spring-boot-starter-parent:2.4.3

问题描述:

1.SpringBoot启动报错:Cannot resolve org.springframework.boot:spring-boot-starter-parent:2.4.3


原因分析:

应该是本地仓库中有之前由于网速不好未下载完成的文件,SpringBoot在启动加载依赖时会优先加载本地仓库中的,本地仓库中没有才会从网络上下载。把本地仓库的文件删除,设置阿里云镜像重新下载一遍。


解决方案:

在本地Maven仓库地址:

 C:\Program Files\apache-maven-3.6.3\repository\org\springframework\boot\spring-boot-starter-parent\2.4.3删除该文件夹

在本地Maven的C:\Program Files\apache-maven-3.6.3\conf\setting.xml中配置国内阿里云镜像

在pom.xml文件中重写

 


        spring-boot-starter-parent
        org.springframework.boot
        2.4.3

pom

 用maven重新clean,compile,install。

你可能感兴趣的:(错误录,java,spring,boot)