项目(c3p0连接池 或 DBCP 连接池)中遇到的问题,长时间无请求使得连接失效的问题
问题描述:
com.mysql.jdbc.CommunicationsException
MESSAGE: Communications link failure due to underlying exception: 

** BEGIN NESTED EXCEPTION ** 

java.net.SocketException
MESSAGE: 断开的管道 (Write failed)
  项目运行一段时间(大概几个小时)之后访问时会出现第一次访问报错,再次访问正常的现象,且多次出现此问题。
问题原因:
        MySQL 的默认设置下,当一个连接的空闲时间超过8小时后,MySQL 就会断开该连接,而 c3p0 连接池则以为该被断开的连接依然有效
        在这种情况下,如果客户端代码向 c3p0 连接池请求连接的话,连接池就会把 已经失效的连接 返回给客户端,
        客户端在使用该失效连接的时候即抛出异常。  
解决方案:

三种方法,推荐第三种

1、 增加 MySQL 的 wait_timeout 属性的值。    

       
修改 /etc/mysql/my.cnf 文件,在 [mysqld] 节中设置:  

# Set a connection to wait 8 hours in idle status.    
    
wait_timeout = 86400  

2、 减少连接池内连接的生存周期,使之小于上一项中所设置的 wait_timeout 的值。  
修改 c3p0 的配置文件,设置:    
    
# How long to keep unused connections around(in seconds)    
    
# Note: MySQL times out idle connections after 8 hours(28,800 seconds)    
    
# so ensure this value is below MySQL idle timeout    
    
cpool.maxIdleTime=25200    
    
在 Spring 的配置文件中:    
    
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">    
    
    <property name="maxIdleTime" value="${cpool.maxIdleTime}" />    
    
    <!-- other properties -->    
    
</bean>  

3、定期使用连接池内的连接,使得它们不会因为闲置超时而被 MySQL 断开。
修改 c3p0 的配置文件,设置:    
  
# Prevent MySQL raise exception after a long idle time    
    
cpool.preferredTestQuery='SELECT 1'    
    
cpool.idleConnectionTestPeriod=18000    
    
cpool.testConnectionOnCheckout=true    
  
修改 Spring 的配置文件:    
  
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">    
    
    <property name="preferredTestQuery"  value="${cpool.preferredTestQuery}" />    
    
    <property name="idleConnectionTestPeriod"  value="${cpool.idleConnectionTestPeriod}" />    
    
    <property name="testConnectionOnCheckout"  value="${cpool.testConnectionOnCheckout}" />    
    
    <!-- other properties -->    
    
</bean>     

以上为 c3p0 的方法
使用DBCP连接池时出现断开连接的解决方法
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
	<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
	<property name="url" value=""></property>
	<property name="username" value=""/>
	<property name="password"  value=""/>
	<property name="validationQuery" value="select 1"/>
	<property name="testOnBorrow" value="true"/>
</bean>
testOnBorrow    从数据库连接池中取得连接时,是否对其有效性进行检查。
validationQuery 是用来检查的SQL语句,“select 1”执行较快,( oracle是select 1 from dual 而 mysql是 select 1 )

添加新评论