HibernateSessionFactory建立-使用ThreadLocal
Posted 雪山非猪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HibernateSessionFactory建立-使用ThreadLocal相关的知识,希望对你有一定的参考价值。
立即加载还是延迟加载必须要连接数据库的,而在Java中连接数据库是依赖java.sql.Connection,在hibernate中session就是Connection的一层高级封装,一个session对应了一个Connection,要实现延迟加载必须有session才行.而且要进行延迟加载还必须保证是同一个session才行,用另外一个session去延迟加载前一个session的代理对象是不行的.大家都知道Connection是使用过后必须要进行关闭的,那么我们如何保证一次http请求过程中,一直都使用一个session呢,即一个Connection呢.而且还要保证http请求结束后正确的关闭.
好,现在我们知道了我们要解决的问题
1.如何保证http请求结束后正确的关闭session
2.如何保证http请求过程中一直使用同一个session
package util; import java.io.Serializable; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class HibernateSessionFactory implements Serializable{ private static final String CONFIG_FILE_LOCATION = "/hibernate.cfg.xml"; private static final ThreadLocal<Session> threadLocal = new ThreadLocal<Session>(); private static Configuration configuration = new Configuration(); private static SessionFactory sessionFactory=null; private static String configFile = CONFIG_FILE_LOCATION; //static代码块只会在实例化类的时候只执行一次 static{ try { configuration.configure(configFile); sessionFactory = configuration.buildSessionFactory(); } catch (Exception e) { System.err.println("%%%% Error Creating SessionFactory %%%%"); e.printStackTrace(); } } //获取Session public static Session getCurrentSession(){ Session session = threadLocal.get(); //判断Session是否为空,如果为空,将创建一个session,并付给线程变量tLocalsess try { if(session ==null&&!session.isOpen()){ if(sessionFactory==null){ rbuildSessionFactory(); }else{ session = sessionFactory.openSession(); } //session = (sessionFactory != null) ? sessionFactory.openSession(): null; } threadLocal.set(session); } catch (Exception e) { // TODO: handle exception } return session; } public static void rbuildSessionFactory(){ try { configuration.configure(configFile); sessionFactory = configuration.buildSessionFactory(); } catch (Exception e) { System.err.println("%%%% Error Creating SessionFactory %%%%"); e.printStackTrace(); } } }
以上是关于HibernateSessionFactory建立-使用ThreadLocal的主要内容,如果未能解决你的问题,请参考以下文章
如何理解Hibernate中的HibernateSessionFactory类
如何理解Hibernate中的HibernateSessionFactory类
代码中的ThreadLocal在这个HibernateSessionFactory中啥作用?为啥还要重建sessionFactory?求助谢谢!
web项目运行到session = hibernateutil.HibernateSessionFactory.getSession()就说找不到error.jsp