mysql: communications link failure解决 使用connector/j连接mysql,程序运行较长时间后就会报以下错误: communications link failure,the last packet successfully received from the server was *** millisecond ago.the last packet successfully sent to the server was *** millisecond ago。 其中错误还会提示你修改wait_timeout或是使用connector/j的autoreconnect属性避免该错误。 mysql服务器默认的“wait_timeout”是28800秒即8小时,意味着如果一个连接的空闲时间超过8个小时,mysql将自动断开该连接,而连接池却认为该连接还是有效的(因为并未校验连接的有效性),当应用申请使用该连接时,就会导致上面的报错。 解决办法有两个: 一是修改my.cnf: wait_timeout=31536000 interactive_timeout=31536000 将过期时间修改为1年。 二是在连接url上添加参数:&autoreconnect=true&failoverreadonly=false