Hibernate.基础篇《二》. getOpenSession() 和 getCurrentSession() - 1

时间:2022-01-08 16:12:14

Hibernate.基础篇《二》. getOpenSession() 和 getCurrentSession() - 1

说明:

  在Hibernate应用中,Session接口的使用最为广泛,也成为持久化管理器,提供与持久化相关的操作,如:添加、更新、删除、加载即查询对象等。可以简单的理解为Session是JDBC中的Connection的封装。那也就是说,如果你想操作数据库(CRUD操作),那么一定会使用到Session,而Session的创建有两种:1.  getOpenSession()    2. getCurrentSession() 。代码如下:

项目上仅多了一个SessionTest.java类,其它保持不变,结构如下:

  Hibernate.基础篇《二》. getOpenSession() 和 getCurrentSession() - 1

  SessionTest.java

 package com.charles.hibernate.test;

 import org.hibernate.Session;
import org.junit.Test; import com.charles.hibernate.util.HibernateUtil; /**
* <p>Type: SessionTest</p>
* <p>Description: Session</p>
* @author baitang.<gy03554>
* @date 2018年10月20日 上午12:27:37
* @version v1.0.0
*/
public class SessionTest { @Test
public void getOpenSession() { // 获取OpenSession
Session openSession = HibernateUtil.getOpenSession();
System.out.println("OpenSession :" + openSession ); // 比较在同一个线程中,每次获取的Session是否为同一个?
Session openSession1 = HibernateUtil.getOpenSession();
Session openSession2 = HibernateUtil.getOpenSession();
System.out.println(openSession1 == openSession2); // #输出结果:false
} @Test
public void getCurrentSession() { /**
* 获取CurrentSession
* 注意:
* 获取CurrentSession的时候, hibernate.cfg.xml配置文件中需要配置如下配置:
* <property name="hibernate.current_session_context_class">thread</property>
* 如果不配置上面这一行,那么是拿不到CurrentSession的。
*/
Session currentSession = HibernateUtil.getCurrentSession();
System.out.println("CurrentSession :" + currentSession); // 比较在同一个线程中,每次获取的Session是否为同一个?
Session currentSession1 = HibernateUtil.getCurrentSession();
Session currentSession2 = HibernateUtil.getCurrentSession();
System.out.println(currentSession1 == currentSession2); // #输出结果:true
}
}

  hibernate.cfg.xml

 <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <!-- Generated by MyEclipse Hibernate Tools. -->
<hibernate-configuration> <session-factory> <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://192.168.43.150:3306/hibernate</property>
<property name="connection.username">hibernate</property>
<property name="connection.password">hibernate</property> <!-- 方言 -->
<property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property> <!-- 显示SQL语句 -->
<property name="hibernate.show_sql">true</property> <!-- 格式化SQL语句 -->
<property name="hibernate.format_sql">true</property> <!-- 在启动时根据配置更新数据库 -->
<!-- <property name="hbm2ddl.auto">update</property> --> <!-- 在是使用getCuurentSesion方法获取session时,需配置 -->
<property name="hibernate.current_session_context_class">thread</property> </session-factory> </hibernate-configuration>

Session总结《》:

  上面的一段代码说明了,在使用openSession()方法获取一个Session的时候,是重新建立一个新的session;而getCurrentSession() 则是获取当前线程里的session。

如有问题,欢迎纠正!!!

如有转载,请标明源处:https://www.cnblogs.com/Charles-Yuan/p/9820045.html