SessionFactory对象中getCurrentSession() 和 OpenSession()的区别

简单地说:

getCurrentSession的话会自动关闭,而openSession需要你手动关闭。如果你正在查询,使用的openSession而没有手动关闭,多次之后会导致连接池溢出,系统会挂掉的~


session1 == session2 虽然它们的别名是不一样的,但是指向同一块内存空间的,若不一样,那内存中就会有2个一样的内存空间咯?那这样也不好管理的哦

再看下面:

1. 如果使用的是getCurrentSession来创建session的话,在commit后,session就自动被关闭了,

也就是不用再session.close()了。但是如果使用的是openSession方法创建的session的话,

那么必须显示的关闭session,也就是调用session.close()方法。这样commit后,session并没有关闭

/*2. getCurrentSession的使用可以参见hibernate\hibernate-3.2\doc\tutorial\src项目

3. 使用SessionFactory.getCurrentSession()需要在hibernate.cfg.xml中如下配置:

* 如果采用jdbc独立引用程序配置如下: 1

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

* 如果采用了JTA事务配置如下

<property name="hibernate.current_session_context_class">jta</property>*/

getCurrentSession就是使用当前的session,同一个

openSession就是每次都打开一个新的session

你可能感兴趣的:(sessionFactory)