idea新建maven项目加载缓慢问题处理_archetypeCatalog

问题描述:
新建maven项目时,存在加载缓慢,或直接一直保持一个加载状态

问题原因:
创建maven项目的时候,需要从http://repo.maven.apache.org/maven2/archetype-catalog.xml下载项目原型信息,访问外网,就可能存在类似问题。

================================================
ArchetypeCatalog介绍

The Archetype Plugin knows by default its internal catalog. It also knows about the local and remote catalogs:


local represents the ~/.m2/archetype-catalog.xml catalog file,

remote represents the
http://repo.maven.apache.org/maven2/archetype-catalog.xml catalog file.


IDEA根据maven archetype的本质,其实是执行mvn archetype:generate命令,该命令执行时,需要指定一个archetype-catalog.xml文件。

该命令的参数-DarchetypeCatalog,可选值为:remote,internal ,local等,用来指定archetype-catalog.xml文件从哪里获取。

archetypeCatalog用来指定maven-archetype-plugin读取archetype-catalog.xml文件的位置:

internal——maven-archetype-plugin内置的

local——本地的,位置为~/.m2/archetype-catalog.xml

remote——指向Maven中央仓库的Catalog

默认为remote,从
http://repo1.maven.org/maven2/archetype-catalog.xml下载archetype-catalog.xml文件。

解决方式:

    • 从本地加载脚手架的配置文件
      • 手动配置
      • 全局配置
      • 让maven使用国内镜像


从本地加载脚手架的配置文件

手动配置

新建project时,添加maven 属性:archetypeCatalog=internal

idea新建maven项目加载缓慢问题处理_archetypeCatalog_第1张图片

archetypeCatalog=internal
idea新建maven项目加载缓慢问题处理_archetypeCatalog_第2张图片
结果如预期

全局配置

1、 先下载 archetype-catalog.xml 文件
http://repo1.maven.org/maven2/archetype-catalog.xml

已经下载好的archetype-catalog.xml
archetype-catalog.xml
2. copy 此 archetype-catalog.xml 文件到本地仓库的 maven 下 catelog 的 jar 下面
idea新建maven项目加载缓慢问题处理_archetypeCatalog_第3张图片
放这个位置,也没用
idea新建maven项目加载缓慢问题处理_archetypeCatalog_第4张图片
-DarchetypeCatalog=local
idea新建maven项目加载缓慢问题处理_archetypeCatalog_第5张图片

使用 -DarchetypeCatalog=local 配置 出现了这种情况,还是去网上下载了
idea新建maven项目加载缓慢问题处理_archetypeCatalog_第6张图片
按照提示:-DarchetypeRepository=
idea新建maven项目加载缓慢问题处理_archetypeCatalog_第7张图片
-DarchetypeRepository=D:.m2\repository //全局配置推荐这个
idea新建maven项目加载缓慢问题处理_archetypeCatalog_第8张图片
虽然出现了警告,无法连接这个仓库,之后调用默认的BasicRepositoryConnectorFactory,没有去访问外网,并BUILD SUCCESS

Cannot access D:\.m2\repository with type default using the available connector factories: BasicRepositoryConnectorFactory

这里写图片描述


-DarchetypeCatalog=internal//在有的情况下,是没有效果的

Other Settings 中的Default Settings
更改项目的默认配置
idea新建maven项目加载缓慢问题处理_archetypeCatalog_第9张图片

idea新建maven项目加载缓慢问题处理_archetypeCatalog_第10张图片

效果如预期,没有去访问外网,并BUILD SUCCESS
这里写图片描述


手动配置命令

archetypeCatalog=internal

全局配置命令
-DarchetypeRepository=

====================================

让maven使用国内镜像

添加阿里云的mirror
修改maven根目录下的conf文件夹中的setting.xml文件,内容如下:

<mirrors>
    <mirror>
      <id>alimavenid>
      <name>aliyun mavenname>
      <url>http://maven.aliyun.com/nexus/content/groups/public/url>
      <mirrorOf>centralmirrorOf>        
    mirror>
  mirrors>
mvn archetype:generate \
    -DgroupId=com.mycom.helloworld \
    -DartifactId=helloworld \
    -DarchetypeArtifactId=maven-archetype-quickstart \
    -DinteractiveMode=false \
-DarchetypeCatalog=http://maven.aliyun.com/nexus/content/groups/public/

详情查看:
让maven使用国内镜像和archetypeCatalog


参考:
IDEA新建MAVEN项目时速度缓慢
[Maven]archetypeCatalog笔记

你可能感兴趣的:(IDE_工欲善其事,issues)