pom.xml文件中<parent> 标签报错:
·
问题:主要是在本地仓库未找到jar包
Project build error: Non-resolvable parent POM: Failure to transfer org.springframework.boot:spring-boot-starter-parent:pom:2.2.6.RELEASE from http://repo1.maven.org/maven2 was cached in the
local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.springframework.boot:spring-
boot-starter-parent:pom:2.2.6.RELEASE from/to central (http://repo1.maven.org/maven2): Failed to transfer http://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-parent/
2.2.6.RELEASE/spring-boot-starter-parent-2.2.6.RELEASE.pom. Error code 501, HTTPS Required and 'parent.relativePath' points at no local POM
解决方案:
在maven的配置文件文件库
在conf文件夹下找到setting.xml文件,在文件的<mirrors>标签下添加以下库:
<!-- 阿里云库 -->
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<!--华为库 -->
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
在项目中找到pom.xml文件右键Run us --> Maven clean或Maven install 下载jar
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐


所有评论(0)