我正在使用jersey.1.x客户端。对于每个api调用,我都会看到SSL握手。我想避免除第一个api调用外的所有调用的SSL握手。 例如:如果有3次api调用,则应该只有1次SSL握手,但我看到3次SSL握手。
HTTPSProperties httpsProperties{
TrustManager[] trustManager = new TrustManager[]{new HttpsTrustManager()};
SSLContext context = SSLContext.getInstance('TLS');
context.init(null,trustManager,new SecureRandom());
HttpsURLConnection.setDefaultSSLSocketFactory(context.getSocketFactory( ));
return new HTTPSProperties(new HostnameVerifier() {
public boolean verify(String arg0, SSLSession arg1) {
return true;
},context)
}