【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes

有的时候想要新建一个quickstart项目需要等待加载很久,可能是网速的原因也可能其它拉七拉八的原因,页面就像下图中红色框框内全无东西,一直在加载
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【解决办法】很简单,新建一个文本文件把下面的代码粘贴进去,把文档名称改为archetype-catalog.xml,记住是xml后缀喔!把这个文件保存在你电脑的任何位置都可以

<?xml version="1.0" encoding="UTF-8"?>
<archetype-catalog>
  <archetypes>
       <archetype>
      <groupId>org.apache.maven.archetypes</groupId>
      <artifactId>maven-archetype-quickstart</artifactId>
      <version>1.1</version>
      <description>An archetype which contains a sample Maven project.</description>
    </archetype>
        <archetype>
      <groupId>org.apache.maven.archetypes</groupId>
      <artifactId>maven-archetype-webapp</artifactId>
      <version>1.0</version>
      <description>An archetype which contains a sample Maven Webapp project.</description>
    </archetype>
  </archetypes>
</archetype-catalog>

接下来的操作如下图
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
这样问题就解决了,新建项目就非常快啦!
另:网络上还有一种解决办法是说阿里的太慢了,改为华为的远程仓库,我也试了下确实是会比较快
具体如下图
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
这样就好啦!
具体我们可以创建一个quickstart项目和之前的方式对比一下
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
这是pom文件之间的对比:
【已解决】eclipse新建Maven quickstart项目加载过慢问题:Retrieving archetypes
由于我也是刚接触Maven所以也不是非常了解,上面两种方法初步试了试在项目里面用起来,应该是没太大差别的
希望对大家有帮助呀

上一篇:Throughput Controller


下一篇:vue_elementUI的全部引入