Spring对Hibernated的Session和SessionFactory的管理
获得Session:
从Spring的HibernateDAOSupport中的getSession()方法中获得Session实际上为每个方法获得不同的Session,因为hibernateTemplate的isAllowCreate()返回的allowCreate变量的boolean值将永远是true。
而如果你使用getSession(boolean allowCreate)来获得Session的话,在获得时指定不允许创建(false),就必须将Session同这个线程结合起来,代码可见Spring的SessionFactoryUtils里面的
getSession(SessionFactory sessionFactory, Interceptor entityInterceptor, SQLExceptionTranslator jdbcExceptionTranslator, boolean allowSynchronization,boolean allowCreate)
这个私有方法
下面说明一下这个方法:
l 首先,通过TransactionSynchronizationManager的getSource(Object key)方法从TransactionSynchronizationManager中获得一个给定SessionFactory的所有Session,这是一个SessionHolder型变量,
说明:SessionHolder是一个Session的包装类,SessionHolder使用Map作为存储结构,来存储SessionFactory的所有Session,并包装它们,然后由HibernateTransactionManager来将它绑定到一个线程
l 判断:
n 如果这个SessionHolder不为空
u 然后根据不同的事务设置(不同的事务管理生成的Session不同)来设置这个SessionHolder变量的一些属性(也就是将从这里得到的Session的属性,如:事务,FlushMode)然后从这个SessionHolder中返回一个Session
n 如果这个SessionHolder为空,继续
l 判断传入的boolean型参数allowCreate
n 如果为false:抛出异常:"No Hibernate session bound to thread, and configuration does not allow creation of new one here"
n 如果为true:继续
l 从SessionFacotry中创建一个新的Session并设定事务特性和FlushMode然后返回
关闭Session:
Spring在关闭Session的时候,使用了SessionFactoryUtils中的closeSessionIfNecessary(Session session, SessionFactory sessionFactory) 方法,这个方法将关闭给定的Session(由给定的SessionFactory创建),如果Session没有绑定到某个线程。
在这个方法中,如果创建这个Sesion的SessionFactory被注册为延迟关闭,则实际上给定Session没有被关闭,而是被放到了一个被命名为deferredCloseHolder的ThreadLocal中,放在这个Map结构中的一个Set型的值中,被用来进行延迟关闭。
―――――――――――
这里说到Spring使用ThreadLocal的方法,ThreadLocal包含一个Map结构,在这个Map中根据SessionFactory的名字来进行索引,每个SessionFactory的名字在这个Map中都对应一个Set,里面包含这个SessionFactory的所有Session
―――――――――――
如果在这个deferredCloseHolder中的Map为空或者不包含SessionFactory,也就是说这个SessionFactory没有应用延迟关闭策略,那么给定的Session将被立即关闭。
对SessionFactory应用延迟关闭策略
如果对SessionFactory实施了延迟关闭策略,那么它生成的全部Session都将被延迟关闭,初始化一个SessionFactory的延迟关闭策略,使用SessionFactoryUtils这个类的initDeferredClose方法中,它只是简单的将SessionFactory作为Key加入到这个SessionFactoryUtil的ThreadLocal 型的私有变量deferredCloseHolder中,并用它来索引一个HashSet变量,这个HashSet用来容纳这个SessionFactory生成的所有Session,使用holderMap.put(sessionFactory, new HashSet());
- 作者: flyingbug 2004年12月17日, 星期五 17:05