将 SSL 证书导入 Eclipse

2022-01-25 00:00:00 ssl ssl-certificate java eclipse

如何将java创建的SSL证书导入Eclipse项目中?

How do you import an SSL certificate created by java into a project in Eclipse?

推荐答案

您可能想在 JRE 的 trustcacerts 中导入假" SSL 证书以避免无效证书问题.不是吗?

Probably you want to import a "fake" SSL cert in JRE's trustcacerts for avoiding not-a-valid-certificate issues. Isn't it?

正如 Jon 所说,您可以使用 钥匙工具:

As Jon said, you can do the job with keytool:

keytool
    -import
    -alias <provide_an_alias>
    -file <certificate_file>
    -keystore <your_path_to_jre>/lib/security/cacerts

在询问时使用changeit"作为默认密码(感谢 Brian Clozel).确保在您的服务器上使用此运行时或启动配置.

Use "changeit" as the default password when asked (thanks Brian Clozel). Ensure to use this runtime at your server or launch configuration.

相关文章