// Fixing deprecated code to use current HttpClient implementations Sekito.Lv 01/30/2019 11:29 Start
import org.apache.http.ssl.SSLContexts;
import org.apache.http.ssl.SSLContextBuilder;
//import org.apache.http.conn.ssl.SSLContexts;
//import org.apache.http.conn.ssl.SSLContextBuilder;
// Fixing deprecated code to use current HttpClient implementations Sekito.Lv 01/30/2019 11:29 End
2条答案
按热度按时间qxgroojn1#
我实际上刚刚看过这个,看起来HttpCLient SSLContexts类正在从
org.apache.http.conn.ssl.SSLContexts
移动到org.apache.http.ssl.SSLContexts
。我把我的进口改为这些新的软件包,现在看起来很好。我不知道你对sslcontextbuilder
的参考是什么,但我很确定它也有一个替代的实现。让我知道更多的细节,我可以检查。3npbholx2#
你可以改变它如下代码