java.lang.NoClassDefFoundError: org/apache/http/conn/scheme/SchemeSocketFactory

前端 未结 5 607
走了就别回头了
走了就别回头了 2021-01-02 21:16

I am tring to send mail by AWSCredentials but getting an exception

java.lang.NoClassDefFoundError: org/apache/http/conn/scheme/SchemeSocketFactory

5条回答
  •  南方客
    南方客 (楼主)
    2021-01-02 21:52

    From the javadocs, the SchemeSocketFactory class is only available since version 4.1. So this might have something to do with the fact that you are using the 4.0 alpha jars. Try upgrading your http-client library to 4.1 or higher.

提交回复
热议问题