应用程序空闲时的连接超时

时间:2014-06-03 05:48:34

标签: java mysql spring hibernate

当我的应用程序闲置一段时间后,我无法连接到数据库。 我的数据库是Mysql,服务器是Tomcat。应用程序是使用Spring-Hibernate构建的。 persistance.xml中的我的连接设置是这样的 -

<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
    version="1.0">
    <persistence-unit name="GTPU"  >
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <properties>
            <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
            <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
            <property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/application_db_name"/>
            <property name="hibernate.connection.username" value="***"/>
            <property name="hibernate.connection.password" value="***"/>
            <property name="hibernate.show_sql" value="false" />
            <property name="hibernate.format_sql" value="true" />
            <property name="hibernate.use_sql_comments" value="true" />
            <property name="hibernate.connection.zeroDateTimeBehavior" value="convertToNull"/>
        </properties>
    </persistence-unit>
</persistence>

但如果我在一段时间后尝试,它会成功连接到数据库。

Mysql变量设置如下

-------------------------------------
Variable_name                 Value
-------------------------------------
connect_timeout            10
delayed_insert_timeout     300
innodb_lock_wait_timeout    50
innodb_rollback_on_timeout  OFF
interactive_timeout        28800
lock_wait_timeout         31536000
log_output                  FILE
net_read_timeout             30
net_write_timeout            60
slave_net_timeout           3600
wait_timeout              28800
--------------------------------------

可能是什么原因?我怎么解决这个问题。

2 个答案:

答案 0 :(得分:0)

将wait_timeout变量增加到超过最大空闲时间的值。这将解决您的问题。

答案 1 :(得分:0)

我使用连接池库解决了它 - C3P0 http://www.mchange.com/projects/c3p0/#idleConnectionTestPeriod

使用属性idle_test_period,它在指定的间隔后ping数据库服务器。

<property name="hibernate.c3p0.idle_test_period" value="100" />
<property name="hibernate.c3p0.preferredTestQuery" value="select 1;" />