Hibernate--session的两种获取方式
Posted CrazyDream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hibernate--session的两种获取方式相关的知识,希望对你有一定的参考价值。
openSession
getCurrentSession
Hibernate有两种方式获得session,分别是:
openSession和getCurrentSession
他们的区别在于
1. 获取的是否是同一个session对象
openSession每次都会得到一个新的Session对象
getCurrentSession在同一个线程中,每次都是获取相同的Session对象,但是在不同的线程中获取的是不同的Session对象
SessionFactory factory=new Configuration().configure().buildSessionFactory();
Session session = factory.openSession();
Session session1= factory.openSession();
System.out.println(session==session1);
同一线程:主线程(true)
Session session2 = factory.getCurrentSession();
Session session3= factory.getCurrentSession();
System.out.println(session2==session3);
不同线程: (false)
public class Test {
static Session s1;
static Session s2;
public static void main(String[] args) throws InterruptedException {
final SessionFactory sf = new Configuration().configure().buildSessionFactory();
Thread t1 = new Thread() {
public void run() {
s1 = sf.getCurrentSession();
}
};
t1.start();
Thread t2 = new Thread() {
public void run() {
s2 = sf.getCurrentSession();
}
};
t2.start();
t1.join();
t2.join();
System.out.println(s1 == s2);
}
}
2. 事务提交的必要性
openSession只有在增加,删除,修改的时候需要事务,查询时不需要的(get方法)
getCurrentSession是所有操作都必须放在事务中进行,并且提交事务后,session就自动关闭,不能够再进行关闭
提交事务后,session就自动关闭,不能够再进行关闭:
以上是关于Hibernate--session的两种获取方式的主要内容,如果未能解决你的问题,请参考以下文章
java动态获取WebService的两种方式(复杂参数类型)