如何在新的 Apache Http Client 4.3 中创建 SSL 套接字工厂?
这是我在 4.3 之前创建它的方式
val ts = new TrustStrategy() {
def isTrusted(chain: Array[X509Certificate], authType: String): Boolean = true
}
new SSLSocketFactory(ts, SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER)
现在SSLSocketFactory
标记为已弃用。定义自定义的新方法是TrustStrategy
什么?我想不通。