0

我的 Web 应用程序冻结时遇到问题。使用 JConsole 监控工具,我看到应用程序达到了 maxPoolSize。这导致应用程序冻结。

系统上有大约 20 个用户,每个用户可以有多个 Web 会话。

这是应用程序中的 HttpServlet 示例。

public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
    Session sess = null;
    Transaction tx = null;
    try {
        sess = RuntimeContext.getCurrentSession();
        tx = sess.beginTransaction();
        doingStuffWithSession(req, res, sess);
        if (!tx.wasCommitted()) {
            tx.commit();
        }
    } catch (Exception e) {
        handleException(e, req, sess);
    } finally {
        if (sess != null && sess.isOpen() && tx != null && tx.isActive()) {
              tx.rollback();
        }
    }
}

这是我在 c3p0 中的休眠属性:

<properties>
    <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
    <property name="hibernate.archive.autodetection" value="class, hbm"/>
    <property name="hibernate.c3p0.min_size" value="20" />
    <property name="hibernate.c3p0.max_size" value="200" />
    <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>
4

1 回答 1

1

看起来您正在打开会话(在您的 RuntimeContext 中),而不是在每次使用时打开和关闭()它们。会话包装连接;如果您不关闭会话,您将耗尽池。提交或回滚事务是不够的。

您应该为每个客户端打开一个新会话,并在客户端完成后立即关闭它。参见例如这里介绍的成语:http ://www.tutorialspoint.com/hibernate/hibernate_sessions.htm

于 2013-03-12T20:37:48.097 回答