Hibernate-学习笔记03-getCurrentSession和openSession区别

SessionFactory得到Session的方法有两种getCurrentSession和openSession两种

 

 

更据Hibernate文档说明,在Hibernate3.2之后不再建议使用openSession,推荐使用getCurrentSession方法来获得Session对象。分别来说下两种获得Session的区别:

 

openSession:

表示创建一个 Session ,使用后需要关闭这个 Session

getCurrentSession:

表示当前环境没有 Session 时,则创建一个,否则不用创建

 

两方法的区别:

            ①、 openSession 永远是每次都打开一个新的 Session, getCurrentSession 不是,是从 上下文 找、只有当前没有 Session 时,才创建一个新的 Session

            ②、 OpenSession 需要手动 close,getCurrentSession 不需要手动 close ,事务提交自动 close

            ③、 getCurrentSession 界定事务边界

 

上下文:

所指的上下文是指 hibernate 配置文件 (hibernate.cfg.xml) 中的“ current_session_context_class ”所指的值: ( 可取值: jta|thread|managed|custom.Class)

< property name = "current_session_context_class" > thread </ property 
 

  常用的是:

①、 thread 是从 上下文 找、只有当前没有 Session 时,才创建一个新的 Session ,主要从数据界定事务

②、 jta :主要从分布式界定事务,运行时需要 Application Server 来支持 (Tomcat 不支持

 

                   小概念:

                            jta Java Transaction API

                jpa Java Persistence API

 

③、 managed: 不常用

④、 custom.Class: 不常用

 

 

 

 

两方法的写法:

openSession:

SessionFactory sf = new Configuration().configure().buildSessionFactory();

Session session = sf.openSession();
session.beginTransaction();
session.save(student);
session.getTransaction().commit();
session.close();
 

 

getCurrentSession:

 

SessionFactory sf = new Configuration().configure().buildSessionFactory();
//拿到当前session ,若是没有则创建一个session,若存在则拿当前的session
Session session = sf.getCurrentSession();
		
session.beginTransaction();
session.save(student);
session.getTransaction().commit();
 

 

 

你可能感兴趣的:(thread,tomcat,xml,Hibernate,jpa)