即使使用'autoReconnect = true',MySql JDBC也会超时

fis*_*rds 5 mysql timeout jdbc

有时,我的Java/Tomcat6/Debian Squeeze应用程序无法与MySql服务器通信.Tomcat应用程序位于前端服务器上,而MySql位于单独的MySql-only框中.典型的错误是:

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: The last packet successfully received from the server was56588 milliseconds ago.

The last packet sent successfully to the server was 56588 milliseconds ago, which 
is longer than the server configured value of 'wait_timeout'. You should consider either expiring and/or testing connection validity before use in your application, increasing the
server configured values for client timeouts, or using the Connector/J connection property
 'autoReconnect=true' to avoid this problem.
Run Code Online (Sandbox Code Playgroud)

给出的超时时间仅为60秒,看起来非常短.如果是一个小时或更长时间,我只需设置一个后台任务,每隔几分钟ping一次数据库服务器.我已将autoReconnect参数添加到开始URL,没有明显的影响.

有什么问题在这里吗?谢谢Pat

Ric*_*mes 0

您应该针对网络故障编写代码并自行处理自动重新连接。

自动重新连接被故意关闭,因为当连接消失并以不同状态返回时,可能会悄然发生一些“应用程序”错误。

无论如何,评论表明这是一个重复的问题。