(完美解决)Maven 项目创建时遇到问题 (Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:1.0 from any of the configured repositories.)

今天在创建web项目的时候,eclipse出现以下错误

解决办法:配置一下 maven阿里云镜像,亲测有效,完美解决!

配置教程: http://blog.java1234.com/blog/articles/252.html 

 maven阿里云镜像:

<mirror>
<id>aliyun</id>
<name>aliyun Maven</name>
<mirrorOf>*</mirrorOf>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>

 然后上面的方法还是出错

推荐看这篇文章

https://blog.csdn.net/u011781521/article/details/53691593

原文地址:https://www.cnblogs.com/xss512/p/10965706.html