我使用Hibernate + jersey Rest和Mysql作为数据库的后端。在Hibernate中使用cp3池进行连接但是在一段时间之后它会创建很多空闲连接并被卡住。我的配置是:
package com.appname.hibernate.util;
import org.hibernate.HibernateException;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class HibernateUtil {
private static SessionFactory sessionFactory;
static {
try {
Configuration configuration = new Configuration().configure();
sessionFactory = configuration.buildSessionFactory();
} catch (HibernateException he) {
System.err.println("Error creating Session: " + he);
he.printStackTrace();
throw new ExceptionInInitializerError(he);
}
}
public static SessionFactory getSessionFactory() {
return sessionFactory;
}
}
////////////////////// INSIDE DAO ///////////////////////////
private Session getSession() {
SessionFactory sessionFactory = HibernateUtil.getSessionFactory();
Session session;
try {
session = sessionFactory.getCurrentSession();
} catch (org.hibernate.HibernateException he) {
session = sessionFactory.openSession();
}
return session;
}
public Users regsiterUser(Users users) throws Exception {
Session session = null;
try {
session = getSession();
Transaction transaction = session.beginTransaction();
session.saveOrUpdate(users);
transaction.commit();
return users;
//Using context session that is why I am not closing session
} catch (Exception e) { throw e; }
}
我在我的控制器中调用这个DAO函数,我在DAO层中进行事务和会话。请帮助我,我试图解决这个问题,但没有得到任何解决方案请看看上面的配置和代码有什么问题......
提前致谢.....
答案 0 :(得分:1)
我认为这个session = sessionFactory.openSession();
应该在使用后手动关闭,因为它不是由使用后释放资源的协调器管理的。