问题原因:

  maven默认的镜像库URL为 http://maven.net.cn/content/groups/public/

  由于网络原因,可能导致响应速度超级慢,或者无法效应;

解决方法:

  配置国内的镜像库;

  比如阿里云:

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

 

相关文章:

  • 2021-11-24
  • 2021-12-09
  • 2021-11-24
  • 2021-12-08
  • 2021-10-08
  • 2021-11-24
  • 2022-02-07
  • 2021-11-22
猜你喜欢
  • 2021-11-13
  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
  • 2022-02-07
  • 2021-11-14
  • 2021-06-19
相关资源
相似解决方案