com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after co

分析,出现这种异常的原因是:

Mysql服务器默认的“wait_timeout”是8小时,也就是说一个connection空间超过8个小时,Mysql将自动断开该connection,这就是问题所在,在连接池中的connection如果空闲超过8小时,mysql将其断开,连接池并不知道该connection已失效,如果这时有client请求connection,连接池将失效的connection提供给client,将会造成上面的异常。

 

解决的方法:

(1)增加wait_timeout的时间。

(2)测试连接池中的connection的有效性。

 

可以使用hibernate等持久化管理框架,如使用配置:

 

true  

true

true

 

也可以在Mysql的url中加入autoReconnect=true。

 

在data source 配置时加入下面三行也可以解决问题:

 

true  

true

true

 

 

最后欢迎大家访问我的个人网站:1024s

 

 

你可能感兴趣的:(java,数据库系统)