Hibernate连接Mysql的8小时问题
这个问题估计是用mysql建立网站都会碰到的。
每天早上起来打开网页, 就会看到这个问题。。
原因是mysql有一个time_out全局值, 这个值是28800, 也就是28800秒,正好是8小时。8个小时之后会断开连接, 然后jdbc的Connection就需要重新连接才行。
在mysql中运行:show global variables like 'wait_timeout';就可以看到该数值。
问题重现首先我们可以修改一下mysql的配置文件,来重现一下这个错误。
[mysqld]
wait_timeout=20
interactive_timeout=20
这次打开网页,只要过20秒, 刷新请求数据库的页面,就会看到这个错误了。
Could not open Hibernate Session for transaction; nested exception is org.hibernate.TransactionException: JDBC begin transaction failed:
Caused by:
org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exception is org.hibernate.TransactionException: JDBC begin transaction failed: 再次刷新页面就能打开。
解决方案此方案针对dbcp.
http://blog.csdn.net/quickgu/article/details/7179023
validationQuery = "SELECT 1"
testWhileIdle = "true"
timeBetweenEvictionRunsMillis = "10"
minEvictableIdleTimeMillis = "10"
testOnBorrow = "true"/>
这里设置为10, 也就是mysql连接过期的时间的一半。
这样就会在mysql连接过期之前重新获取连接。
具体部署的时候, 改为小于28800的值就行了。