Importing SSL Certificate into Eclipse(将 SSL 证书导入 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.
这篇关于将 SSL 证书导入 Eclipse的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 SSL 证书导入 Eclipse


基础教程推荐
- 存储 20 位数字的数据类型 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01