Could not find artifact org.springframework.boot:spring-boot-starter-parent:pom:3.1.2.RELEASE in alimaven
时间: 2023-08-25 22:12:01 浏览: 120
搭建springboot项目的 pom.xml配置,只需要创建maven项目把pom替换即可
5星 · 资源好评率100%
回答: 你在使用idea创建SpringBoot项目时遇到了maven仓库找不到spring-boot-starter-parent的问题。这个问题可以通过修改阿里云maven镜像来解决。具体的解决方法是在maven设置中添加如下镜像配置:
<mirror>
<id>alimaven</id>
<mirrorOf>*</mirrorOf>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
添加完这个镜像配置后,重新构建你的项目,问题就会解决了。
阅读全文