使用 Jersey 客户端的 HTTPS [英] HTTPS using Jersey Client

查看:44
本文介绍了使用 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

这篇关于使用 Jersey 客户端的 HTTPS的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆