核心类和接口------sessionfactory. session
[/size]SessionFactory (会话工厂)
1.可以缓存sql语句和数据(称为session级缓存)!!
2.是一个重量级的类,因此我们需要保证一个数据库,有一个SessionFactroy
这里我们讨论一个通过SessionFactory 获取 Session的两个方法 openSession() 一个 getCurrentSession();
1.openSession() 是获取一个新的session
2.getCurrentSession () 获取和当前线程绑定的session,换言之,在同一个线程中,我们获取的session是同一session,这样可以利于事务控制
如果希望使用 getCurrentSession 需要配置 hibernate.cfg.xml中配置.
3.如何选择
原则:
①如果需要在同一线程中,保证使用同一个Session则,使用getCurrentSession()
②如果在一个线程中,需要使用不同的Session,则使用opentSession()
4.通过 getCurrentSession() 获取的session在事务提交后,会自动关闭,通过openSession()获取的session则必须手动关闭
5.如果是通过getCurrentSession() 获取 sesssion ,进行查询需要事务提交.
全局事务和本地事务
jndi
?如何确定你的session有没有及时关闭
windows cmd netstat –an [oracle 1521 mysql 3306 sql server 1433]
linux/unix netstat –anp top
⑤session接口
它的主要功能和作用是:
1.Session一个实例代表与数据库的一次操作(当然一次操作可以是crud组合)
2.Session实例通过SessionFactory获取,用完需要关闭。
3.Session是线程不同步的(不安全),因此要保证在同一线程中使用,可以用getCurrentSessiong()。
4.Session可以看做是持久化管理器,它是与持久化操作相关的接口
示意代码: Configuration cf=new Configuration().configure();
SessionFactory sf=cf.buildSessionFactory();
Session s=sf.getCurrentSession();
//或者是: Session s=sf.openSession();
[size=medium]