解决maven 在IDEA 下载依赖包速度慢的问题

问题如下图所示:

在这里插入图片描述
如上图下载一个 数据库连接 (mysql-connector-java ) 的 jar 包,发现下载速度很慢,慢出天际。多导几个 jar 包得半个小时才能完成。我一开始认为是我的网络问题,然而并不是,网速杠杠的。

在这里插入图片描述


问题分析:

maven 默认使用的远程仓库是外国的远程仓库,在国内连接速度较慢,所以下载依赖需要较长时间。就比如在用 npm 下载一些 依赖前端依赖包时,我们有时也会遇到下载一个依赖包半天下载不下来,这时我们更换淘宝镜像源来下载前端依赖包,下载速度有了质的飞跃。因此我们只需给 maven 配置国内镜像源即可。


配置操作:

  1. 在 IDEA 界面中 连续点击两下 Shift ,出现全局搜索界面,搜索 setting.xml , 点击这个文件进行编辑

在这里插入图片描述


  1. Ctrl + A 全选 文件中的代码并删除,复制粘贴如下代码,Ctrl + S 保存, 重启 IDEA
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <mirrors>
        <!-- mirror
         | Specifies a repository mirror site to use instead of a given repository. The repository that
         | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
         | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
         |
        <mirror>
          <id>mirrorId</id>
          <mirrorOf>repositoryId</mirrorOf>
          <name>Human Readable Name for this Mirror.</name>
          <url>http://my.repository.com/repo/path</url>
        </mirror>
         -->
 
        <mirror>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
 
        <mirror>
            <id>uk</id>
            <mirrorOf>central</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>http://uk.maven.org/maven2/</url>
        </mirror>
 
        <mirror>
            <id>CN</id>
            <name>OSChina Central</name>
            <url>http://maven.oschina.net/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
 
        <mirror>
            <id>nexus</id>
            <name>internal nexus repository</name>
            <!-- <url>http://192.168.1.100:8081/nexus/content/groups/public/</url>-->
            <url>http://repo.maven.apache.org/maven2</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
 
    </mirrors>
</settings>

在这里插入图片描述


问题解决

猜你喜欢

转载自blog.csdn.net/haduwi/article/details/109698190