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

查看:150
本文介绍了使用Jersey客户端的HTTPS的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Jersey Client 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/consuming_restful_web_services_with

Ripped from this blog post with more details: http://blogs.oracle.com/enterprisetechtips/entry/consuming_restful_web_services_with

有关设置证书的信息,请参阅这个很好回答的问题:在Java中使用HTTPS和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天全站免登陆