MySQL连接和hibernate c3p0设置,8小时后超时?

时间:2013-02-20 11:22:55

标签: java mysql hibernate c3p0

我正在使用Amazon EC2来运行我的Java Wicket应用程序,并且我为该应用程序运行了Amazon MySQL实例。一切正常,但8小时后我的数据库连接丢失了。我试图配置c3p0设置,这样就不会发生这种情况。我也尝试更新MySQL设置,但没有帮助。

这是我的persitence.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<persistence xmlns="xyz">
<persistence-unit name="mysqldb-ds" transaction-type="RESOURCE_LOCAL">

  <description>Persistence Unit</description>
  <provider>org.hibernate.ejb.HibernatePersistence</provider>

  <properties>
    <property name="hibernate.hbm2ddl.auto" value="update"/>
    <property name="hibernate.show_sql" value="true"/>
    <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/>
    <property name="hibernate.connection.username" value="XXXXX"/>
    <property name="hibernate.connection.password" value="YYYYY"/>
    <property name="hibernate.connection.url" value="jdbc:mysql://xxxx.yyyyy.us-east-1.rds.amazonaws.com:3306/paaluttaja"/>
    <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
    <property name="connection.pool_size" value="1" />
    <property name="cache.provider_class" value="org.hibernate.cache.NoCacheProvider" />
    <property name="hibernate.c3p0.min_size" value="5" />
    <property name="hibernate.c3p0.max_size" value="20" />
    <property name="hibernate.c3p0.timeout" value="300" />
    <property name="hibernate.c3p0.max_statements" value="50" />
    <property name="hibernate.c3p0.idle_test_period" value="3000" />
  </properties>

</persistence-unit>
</persistence>

我正在进行这样的查询:

@Service
public class LoginServiceImpl implements LoginService{

@Override
public Customer login(String username, String password) throws LSGeneralException {
    EntityManager em = EntityManagerUtil.getEm();

    TypedQuery<Customer> query = em.createQuery("SELECT c FROM Customer c "
            + "WHERE c.username = '" + username + "' "
            + "AND c.password = '" + password + "'", Customer.class);

    Customer customer = null;

    try {
        customer = (Customer) query.getSingleResult();
    }catch(Exception e){
        if(e instanceof NoResultException){
            throw new LSGeneralException("login.failed.wrong.credentials", e);
        }else{
            throw new LSGeneralException("failure", e);
        }
    }

    customer.setLogged(true);

    return customer;

}

}

所有帮助将不胜感激。

1 个答案:

答案 0 :(得分:3)

首先,您可能需要检查日志中c3p0的配置转储;你的5分钟超时应该可以防止MySQL连接在8小时后失效,但由于某种原因,似乎没有发生在你身上。你想看看c3p0属性'maxIdleTime'是否实际上是300预期的。无论如何,您可以尝试添加

hibernate.c3p0.preferredTestQuery=SELECT 1
hibernate.c3p0.testConnectionOnCheckout=true

这是确保Connections有效性的最简单方法 - 在每次结账时测试它们(使用有效的查询)。它也相对昂贵;如果你发现这是一个问题,你可以去更精明的东西。但确保您可以获得可靠的设置,然后从那里进行优化是很好的。 See here

请注意,如果您的池按您认为的那样进行配置,则hibernate.c3p0.idle_test_period=3000无效。空闲连接将在3000秒测试间隔过去之前很久就会超时。

相关问题