idea maven 一直报错“Could not transfer artifact ......(系统找不到指定的路径。)”
问题
Could not transfer artifact
org.springframework.boot:spring-boot-starter-parent:pom:2.3.4.RELEASE
from/to nexus-aliyun
(http://maven.aliyun.com/nexus/content/groups/public): E:\Program
Files\apache-maven-3.6.3\repository\org\springframework\boot\spring-boot-starter-parent\2.3.4.RELEASE\spring-boot-starter-parent-2.3.4.RELEASE.pom.part.lock
(系统找不到指定的路径。)
没错,就是上面那玩意儿,整整折腾了我三天,按照网上说的什么阿里证书,或是什么镜像库啥的可能有问题,一个个试过去,结果不管用。你们知道,这对于一个准备学Springboot2的新手来说打击有多大嘛!!!啊!我寻思着我明明就写了个这个东西:
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.4.RELEASE</version> </parent>
解决办法
把仓库文件夹的user访问权限改成了这样:
没错,就可以下载依赖了。
原因:
应该是目录放在了C盘被系统自动保护了,如果放在D盘应该不会有这问题
————————————————
参考链接:https://blog.csdn.net/zhoupingqi2017/article/details/113398174