本文最后更新于666 天前,其中的信息可能已经过时,如有错误请发送邮件到434658198@qq.com
报错信息
javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
错误原因
jdk版本过高
解决方案
把javax.mail的包换成com.sun.mail
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.6.2</version>
</dependency>