sslcontextbuilder and SSLContexts deprecated

后端 未结 2 809
闹比i
闹比i 2021-01-07 18:30

I am using JDK1.8 with JDK Compilance JavaSE-1.7, Eclipse Luna, and Apache httpclient 4.4.1.

I am getting warning in Eclipse that sslcontextbuilder and

2条回答
  •  迷失自我
    2021-01-07 18:57

    you can change it as below code

    // 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
    

提交回复
热议问题