正在运行的项目突然出现了以下异常:
WARN JDBCExceptionReporter:100 - SQL Error: 0, SQLState: 08S01
ERROR JDBCExceptionReporter:101 - Communications link failure
Last packet sent to the server was 0 ms ago.
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
Last packet sent to the server was 0 ms ago.
Caused by: java.net.SocketException: Software caused connection abort: recv failed
在网上查找说是 mysql服务器有个 wait_timeout属性
默认是8小时,就是说对于空闲的连接 8小时后会强制关闭它。原话是:MySQL closes connections after 8 hours of inactivity.
解决方法如下:
You either need to use a connection pool that handles stale connections
or use the "autoReconnect" parameter (see "Developing Applications with MySQL Connector/J").
但是我的 url连接jdbc:mysql://localhost:3306/test?autoReconnect=true已经加的有autoReconnect啦
最终应该是我用的是hibernate自带的连接池的问题。
关于hibernate自带的连接池 官方好像也说过,自带的连接池性能不高,缺乏响应大批量请求以及容错能力;只有在开发阶段,测试才用上它自带的。
因为项目当时有大批量的请求,而过几秒就自动重连上啦。
用其他的开源的连接池来替代hibernate自带的就可以啦