You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification
MySQL在高版本需要指明是否进行SSL连接
在mysql连接字符串url中加入ssl=true或者false即可,如下所示。
url=jdbc:mysql://127.0.0.1:3306/framework?characterEncoding=utf8&useSSL=true
本文介绍了如何在MySQL连接字符串URL中设置SSL参数以启用或禁用SSL连接。在高版本的MySQL中,为了确保数据传输的安全性,需要明确指定是否使用SSL。可以通过设置useSSL参数为true或false来实现。
517

被折叠的 条评论
为什么被折叠?



