导入阿里源maven库证书
程序员文章站
2022-03-05 10:33:50
...
在在maven -> reimport 时出现如下的错误
Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:1.3.8.RELEASE from/to alimaven (https://maven.aliyun.com/nexus/content/groups/public/): sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
出现这个问题需要使用https,并且导出证书
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
-
url中使用https
-
下载阿里镜像库的证书到证书库里
-
打开阿里源网址
-
https://maven.aliyun.com/nexus/content/groups/public/
-
使用谷歌浏览器下载到本地
-
-
下点右侧下一步
-
添加到Java信任证书库 D:\Program Files\Java\jre1.8.0_192\lib\security(自己的java安装目录)
- -
执行命令
keytool -import -alias cacerts -keystore cacerts -file C:\Users\way\Downloads\ali_maven.cer
- 默认**库口令:changeit
- 是否信任此证书?[否]: Y
- 显示证书已添加到**库中即表示添加成功
上一篇: STM32 串口通讯(入门练习)
下一篇: Web_HTML_信息表录入