【问题标题】:MySQL connection and hibernate c3p0 settings, timeout after 8 hours?MySQL连接和休眠c3p0设置,8小时后超时?
【发布时间】:2013-02-05 09:09:15
【问题描述】:

我正在使用 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;

}

}

我们将不胜感激。

【问题讨论】:

    标签: java mysql hibernate c3p0


    【解决方案1】:

    首先,您可能想检查您的日志以了解 c3p0 的配置转储;您的 5 分钟超时应该可以防止 MySQL 连接在 8 小时后过时,但由于某种原因,您似乎不会发生这种情况。您想查看 c3p0 属性“maxIdleTime”是否如预期的那样实际为 300。无论如何,您可以尝试添加

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

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

    请注意,您的hibernate.c3p0.idle_test_period=3000 没有用处,如果您的池配置为您认为的那样。在 3000 秒的测试间隔过去之前,空闲连接将超时。

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-05-28
    • 2012-03-31
    • 2016-05-13
    • 1970-01-01
    • 2012-01-06
    • 2016-06-15
    • 1970-01-01
    • 2012-03-01
    相关资源
    最近更新 更多