jlink 构建JRE后HTTPS报错 handshake_failure

原因:打包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_failure)