在使用maven构建项目时,速度都是非常慢,经常都是卡在Generating project in Batch mode这里。查阅资料后发现问题出现在请求网络上的arthetype-catalog.xml文件,才导致速度很慢。
那么如何解决这个问题呢?
1、手动下载arthetype-catalog.xml到本地 :官方下载地址
(如果这个也很慢,那么也可以到这里下载:http://download.csdn.net/detail/zhuxinquan61/9704565)。
2、放到本地maven目录 .m2\repository\org\apache\maven\archetype\archetype-catalog\2.4 中,.m2一般位于当前用户目录下。
3、最后在图示位置加上-DarchetypeCatalog=local即可,用本地arthetype-catalog.xml以替换网络上的arthetype-catalog.xml。
接下来就会看到项目结构很快就会构建完成了。