java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty

场景描述

jdk8 urlconnection访问https地址报了上面异常,而使用jdk11的 urlconnection 不会出现上述异常

解决方案

  • 把D:\software\jdk11\lib\security\cacerts 复制到
    D:\software\java-se-8u41-ri\jre\lib\security 替换其中的cacerts 覆盖即可

原因分析

  • jdk中的java证书两个证书不一样
  • jdk11中含有密钥库 而jdk8中为空
    java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty_第1张图片

参考:https://stackoverflow.com/questions/39788295/maven-error-repeated-java-security-invalidalgorithmparameterexception-the-tr
https://www.cnblogs.com/huanghongbo/p/14262856.html

你可能感兴趣的:(java,maven)