返回顶部
首页 > 资讯 > 数据库 >com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure 解决方案
  • 331
分享到

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure 解决方案

mysql数据库java 2023-09-08 05:09:13 331人浏览 八月长安
摘要

目录 具体出错信息 网上的一些方案 解决方案 具体出错信息 Caused by: com.Mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link

目录

具体出错信息

网上的一些方案

解决方案


具体出错信息

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+版本

    mysql    mysql-connector-java    8.0.28

改完后项目即可正常运行。

来源地址:https://blog.csdn.net/weixin_40757930/article/details/128997068

您可能感兴趣的文档:

--结束END--

本文标题: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure 解决方案

本文链接: https://lsjlt.com/news/399433.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作