SpringBoot报错导入依赖太慢,Maven导入过慢,阿里云镜像设置
在新的电脑上打开springBoot项目时,需要导入新的依赖,有两种设置方法:方法一:在springboot项目的pom.xml文件中添加以下代码(更改镜像为阿里云)<repositories><repository><id>aliyun-repos</id><url>http://maven.aliyun.com/nexus/conte
·
在新的电脑上打开springBoot项目时,需要导入新的依赖,
有两种设置方法:
方法一:
在springboot项目的pom.xml文件中添加以下代码(更改镜像为阿里云)
<repositories>
<repository>
<id>aliyun-repos</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>aliyun-plugin</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
方法二:
在Maven的 config / setting.xml 文件中添加如下代码(更改镜像为阿里云)
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐
所有评论(0)