在实际开发的工作中,由于Maven默认远程仓库的服务器国内访问速度非常慢,我们可以修改默认远程仓库地址,目前大部分使用镜像仓库的方式。本文采用阿里云镜像给大家展示两种配置方,具体如下。

方式一:修改Maven的配置文件

此方式分为两步,配置完成后在所有使用此Maven的项目中生效,具体配置方式如下。

步骤一:

找到Maven配置文件setting.xml(文件位置:maven安装目录/conf/setting.xml)

步骤二:

在setting文件中找到标签,在标签内添加如下代码

  1. <mirror>
  2. <id>alimaven</id>
  3. <name>aliyun maven</name>
  4. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  5. <mirrorOf>central</mirrorOf>
  6. </mirror>

方式二:修改Maven的配置文件

此方式仅一步,但仅在配置的项目中有效,具体配置方式如下。

步骤一:

找到项目的pom.xml文件,并在标签中添加如下代码

    <!-- 在此标签中可以配置多个仓库,优先级按照从上至下的顺序  -->
<repositories>
        <repository>
            <id>aliyun</id>
            <name>aliyun Repository</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
    </repository>
        <repository>
            <id>jeecg</id>
            <name>jeecg Repository</name>
            <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
    </repository>
</repositories>