我在 GoDaddy 购买了 SSL 证书。我需要使用它通过安全连接来启动我的 Spark Java 自包含服务器。根据http://sparkjava.com/documentation#examples-and-faq中的文档,我需要执行以下操作:
String keyStoreLocation = "deploy/keystore.jks";
String keyStorePassword = "password";
secure(keyStoreLocation, keyStorePassword, null, null);
但是当我从 GoDaddy 下载证书时,我得到了文件:
11111.pem
11111.crt
bundle-g2-g1.crt
我需要做什么才能将这些文件转换为兼容的第一个参数 secure(keyStoreLocation, keyStorePassword, null, null);
?