我的 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>