由于 Maven 管理的包,第1次打开工程时,IDE会自动下载所有需要的包,而这些包默认是在国外服务器,所以会很慢。
我们可以通过配置镜像来大幅提高包的下载速度,大家也可以自己去找找国内其他镜像。
配置方法:
找到maven目录下的 conf/settings.xml,添加 mirror。
有的工程自带 maven,在.mvn/wrapper/maven-wrapper.properties 中找到这个maven的路径,添加 mirror。
可以用的镜像
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<!-- OSChina镜像 -->
<mirror>
<id>CN</id>
<name>OSChina Central</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<!-- 国内镜像 -->
<mirror>
<id>maven.net.cn</id>
<mirrorOf>Central</mirrorOf>
<name>Central Mirror in China</name>
<url>http://maven.net.cn/content/groups/public</url>
</mirror>
<!-- 国外镜像 -->
<mirror>
<id>UK</id>
<name>UK Central</name>
<url>http://uk.maven.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>