使用 Jersey 客户端的 HTTPS
如何使用 Jersey 客户端 API 将 GET 请求发送到在 HTTPS 协议上运行的服务器.有没有我可以使用的示例代码?
How do I send GET requests using the Jersey Client API to a server which runs on the HTTPS protocol. Is there any sample code that I can use ?
推荐答案
这样构建你的客户端
HostnameVerifier hostnameVerifier = HttpsURLConnection.getDefaultHostnameVerifier();
ClientConfig config = new DefaultClientConfig();
SSLContext ctx = SSLContext.getInstance("SSL");
ctx.init(null, myTrustManager, null);
config.getProperties().put(HTTPSProperties.PROPERTY_HTTPS_PROPERTIES, new HTTPSProperties(hostnameVerifier, ctx));
Client client = Client.create(config);
从这篇博文中摘录了更多详细信息:http://blogs.oracle.com/enterprisetechtips/entry/sumption_restful_web_services_with
Ripped from this blog post with more details: http://blogs.oracle.com/enterprisetechtips/entry/consuming_restful_web_services_with
有关设置证书的信息,请参阅这个得到很好回答的 SO 问题:使用 HTTPS在 Java 中使用 REST
For information on setting up your certs, see this nicely answered SO question: Using HTTPS with REST in Java
相关文章