如何解决Could not transfer artifact org.springframework.boot问题
作者:Smileassissan
在Maven更新过程中遇到“Could not transfer artifact org.springframework.boot”错误通常是由于网络问题,解决方法是在Maven的设置中忽略HTTPS,添加特定语句后,可以正常下载依赖,但下载速度可能较慢,这是一种常见的解决方案,希望对遇到相同问题的人有所帮助
Could not transfer artifact org.springframework.boot问题
进行maven更新的时候
发现报错
Could not transfer artifact org.springframework.boot
提示网络错误,搜了一下,应该是要忽略https
在maven设置中添加如下语句
-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true
在进行maven的更新
就可以正常的下载了,就是速度确实非常的慢
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- 解决IDEA报错Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded
- 程序包org.springframework.boot不存在的问题解决
- java:无法访问org.springframework.boot.SpringApplication问题
- Java报错:Error:java: 程序包org.springframework.boot不存在解决办法
- Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found的解决方案(亲测可用)