美文网首页
jlink 构建JRE后HTTPS报错 handshake_fa

jlink 构建JRE后HTTPS报错 handshake_fa

作者: _Alpha_ | 来源:发表于2020-06-16 13:05 被阅读0次

    原因:打包JRE时因缺少JDK相应包导致发起HTTPS时ECC加密算法不可用
    解决方案:添加模块jdk.crypto.ec

    jlink --output jre-11.0.2 \
      --compress=2 \
      --no-header-files \
      --no-man-pages \
      --module-path ../jmods \
      --add-modules java.base,java.desktop,jdk.crypto.ec
    

    相关文章

      网友评论

          本文标题:jlink 构建JRE后HTTPS报错 handshake_fa

          本文链接:https://www.haomeiwen.com/subject/klglxktx.html