最近做一个项目,部署tomcat+mysql服务器,但是每次第二天连接的时候就会无法连接数据库,查看日志,报错 ---BEGIN NESTED EXCEPTION---
查看发现是mysql的wait_time连接超时
通过show global variables like 'wait_timeout%' 知道wait_timeout 为28800也就是8小时了,8小时之后就无法连接到mysql
hibernate本身的连接池自动连接性能不好,所以改用C3PO来作为hihibernate的连接池,
将C3PO包导入到项目中
在hibernate中配置如下语句
<!-- 设置C3PO作为连接池0 -->
<property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
<!--连接池的最小连接数-->
<property name="hibernate.c3p0.min_size">5</property>
<!--最大连接数-->
<property name="hibernate.c3p0.max_size">30</property>
<!--连接超时时间-->
<property name="hibernate.c3p0.timeout">1800</property>
<!--statemnets缓存大小-->
<property name="hibernate.c3p0.max_statements">100</property>
<!--每隔多少秒检测连接是否可正常使用 -->
<property name="hibernate.c3p0.idle_test_period">121</property>
<!--当池中的连接耗尽的时候,一次性增加的连接数量,默认为3-->
<property name="hibernate.c3p0.acquire_increment">1</property>
<property name="hibernate.c3p0.validate">true</property>
重启服务器即可。