问题描述:
创建SpringBoot工程,但是等待好一会儿,pom.xml文件中,依然有SpringBoot版本号报红:
在这里插入图片描述
问题定位:
maven配置出了问题,出问题时的maven配置文件settings.xml:

  <mirrors>
	<mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
	  <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>
    </mirror>
  </mirrors>

访问:http://maven.aliyun.com/nexus/content/groups/public/
在这里插入图片描述
解决办法:
重新配置maven镜像:

  <mirrors>
	<mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
	  <url>https://maven.aliyun.com/repository/public</url>
      <mirrorOf>central</mirrorOf>
    </mirror>
  </mirrors>
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐