当前位置:   article > 正文

Maven下载依赖踩坑:Could not transfer artifact org.springframework.bootspring-boot-starter-parent

could not transfer artifact org.springframework.boot:spring-boot-starter-par

环境:IDEA ,公司办公环境
本文只适用于启用了代理服务进行联网的情况!非此情况的朋友们还请另找原因。

创建工程后spring-boot-starter-parent等依赖标红,因为对应的依赖找不到,下载时报错误:
Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:2.0.4.RELEASE from/to nexus-aliyun
或者
Connection timed out
maven的settings.xml文件中添加了阿里云镜像后依然无法下载。

解决办法:在settings.xml文件中添加代理设置:

    <proxy>
      <id>optional</id>
      <active>true</active>
      <protocol>http</protocol>
      <username>proxyuser</username>
      <password>proxypass</password>
      <host>proxy.host.net</host>
      <port>80</port>
      <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
    </proxy>
    -->
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

把账户密码,端口信息修改为自己在公司中的相应配置即可。
终于能下载了:
在这里插入图片描述

PS:有问题及时请教前辈或同事,避免自己瞎折腾浪费时间hhhh

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/575037
推荐阅读
相关标签
  

闽ICP备14008679号