在springBoot整合myBatis的测试过程中遇到了这个错误
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 317 milliseconds ago. The last packet sent successfully to the server was 314 milliseconds ago.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:1.8.0_181]
。。。。
后面还有一大串
解决方法,在连接字符串中 加上 useSSL=false 就好了
或者将useSSL=true 改为 use=false
表示禁用SSL
Security Socket Layer—安全套接字协议
例如
url: jdbc:mysql://localhost:3306/sqmb?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC

end!!
在进行SpringBoot与MyBatis的整合测试时,出现了MySQL的CommunicationsException通信链接失败问题。错误信息显示最近一次成功收发数据是在300毫秒前。解决这个问题的方法是在数据库连接URL中添加`useSSL=false`或修改为`useSSL=false`,以禁用SSL。这涉及到数据库连接安全性和SSL配置。通过调整URL参数,如`useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC`,可以成功解决问题。
1万+

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



