目录
具体出错信息
网上的一些方案
解决方案
具体出错信息
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 233 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago.
网上的一些方案
调大 mysql 的 wait_timeout
使用autoReconnect=true&failOverReadOnly=false,(只对mysql 4之前的版本有效)
以上解决方案的报错信息中的时间一般都很大比如
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 1,548,635,756,564 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago.
但是我的这个错误并不是超时,因为wait_timeout 默认是 8小时,而报错信息中的时间只有233ms。
解决方案
这种情况下 可以尝试将
配置文件中的Driver设置为com.mysql.cj.jdbc.Driver
com.mysql.jdbc.Driver 是mybatis-connection-java 5 及 5 以下的
com.mysql.cj.jdbc.Driver是mybatis-connection-Java 6 及以上的
spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver
pom中mysql依赖可以设置为6+版本文章来源:https://www.toymoban.com/news/detail-736278.html
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.28</version> </dependency>
改完后项目即可正常运行。文章来源地址https://www.toymoban.com/news/detail-736278.html
到了这里,关于com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure 解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!