我们再用spring管理hibernate的时候, 我们会继承HibernateDaoSupport 或者HibernateTemplate类.

我们不知道这两个类之间有什么关系. 也没有去关闭session. 让我很是心不安,他可没有关闭session呀.如果..真的是后果不堪设想.百度了好久, 谷歌了好多. 都没有一个像样的说法. 说spring中HibernateDaoSupport会自己关闭session.

眼见为实.于是乎决定查看spring源码一探究竟.

先打开HibernateDaoSupoprt看看.

  1. public abstract class HibernateDaoSupport extends DaoSupport {
  2. private HibernateTemplate hibernateTemplate;
  3. public final void setSessionFactory(SessionFactory sessionFactory) {
  4. this.hibernateTemplate = createHibernateTemplate(sessionFactory);
  5. }
  6. protected HibernateTemplate createHibernateTemplate(SessionFactory sessionFactory) {
  7. return new HibernateTemplate(sessionFactory);
  8. }
  9. public final SessionFactory getSessionFactory() {
  10. return (this.hibernateTemplate != null ? this.hibernateTemplate.getSessionFactory() : null);
  11. }
  12. public final void setHibernateTemplate(HibernateTemplate hibernateTemplate) {
  13. this.hibernateTemplate = hibernateTemplate;
  14. }
  15. public final HibernateTemplate getHibernateTemplate() {
  16. return hibernateTemplate;
  17. }
  18. protected final void checkDaoConfig() {
  19. if (this.hibernateTemplate == null) {
  20. throw new IllegalArgumentException("sessionFactory or hibernateTemplate is required");
  21. }
  22. }
  23. protected final Session getSession()
  24. throws DataAccessResourceFailureException, IllegalStateException {
  25. return getSession(this.hibernateTemplate.isAllowCreate());
  26. }
  27. protected final Session getSession(boolean allowCreate)
  28. throws DataAccessResourceFailureException, IllegalStateException {
  29. return (!allowCreate ?
  30. SessionFactoryUtils.getSession(getSessionFactory(), false) :
  31. SessionFactoryUtils.getSession(
  32. getSessionFactory(),
  33. this.hibernateTemplate.getEntityInterceptor(),
  34. this.hibernateTemplate.getJdbcExceptionTranslator()));
  35. }
  36. protected final DataAccessException convertHibernateAccessException(HibernateException ex) {
  37. return this.hibernateTemplate.convertHibernateAccessException(ex);
  38. }
  39. protected final void releaseSession(Session session) {
  40. SessionFactoryUtils.releaseSession(session, getSessionFactory());
  41. }

在这里我们会注意到一个private 对象. 那就是HibernateTemplate. 这里面也有一个HibernateTemplate的set. get.

哦: 原来如此.呵呵,很白痴的事.

比如说. BaseDao extends HibernateDaoSupport 我们会super.getHibernateTemplate.find(hql);

super.getHibernateTemplate.save(obj);

和BaseDao extends HibernateTemplate 中super.find(hql)和super.save(obj);是等效的.  原来没有思考害的我改了一个多小时. 汗..

下面我们来看看HibernateTemplate是怎么样来操作session的呢.

照样我们贴出源代码. 由于这个类代码较多. 我只贴出来几个代表性的属性和方法, 供大家参考.

public class HibernateTemplate extends HibernateAccessor implements HibernateOperations {

private boolean allowCreate = true;

private boolean alwaysUseNewSession = false;

private boolean exposeNativeSession = false;

private boolean checkWriteOperations = true;

private boolean cacheQueries = false;

private String queryCacheRegion;

private int fetchSize = 0;

private int maxResults = 0;

public void ......();

} 一系列的方法.

下面我们看看save()方法.

  1. public Serializable save(final Object entity) throws DataAccessException {
  2. return (Serializable) execute(new HibernateCallback() {
  3. public Object doInHibernate(Session session) throws HibernateException {
  4. checkWriteOperationAllowed(session);
  5. return session.save(entity);
  6. }
  7. }, true);
  8. }

我们再看看update(), merge(), find()等方法的源码.

  1. //update 方法
  2. public void update(Object entity) throws DataAccessException {
  3. update(entity, null);
  4. }
  5. public void update(final Object entity, final LockMode lockMode) throws DataAccessException {
  6. execute(new HibernateCallback() {
  7. public Object doInHibernate(Session session) throws HibernateException {
  8. checkWriteOperationAllowed(session);
  9. session.update(entity);
  10. if (lockMode != null) {
  11. session.lock(entity, lockMode);
  12. }
  13. return null;
  14. }
  15. }, true);
  16. }
  17. //merge()
  18. public Object merge(final Object entity) throws DataAccessException {
  19. return execute(new HibernateCallback() {
  20. public Object doInHibernate(Session session) throws HibernateException {
  21. checkWriteOperationAllowed(session);
  22. return session.merge(entity);
  23. }
  24. }, true);
  25. }
  26. //find()
  27. public List find(String queryString) throws DataAccessException {
  28. return find(queryString, (Object[]) null);
  29. }
  30. public List find(String queryString, Object value) throws DataAccessException {
  31. return find(queryString, new Object[] {value});
  32. }
  33. public List find(final String queryString, final Object[] values) throws DataAccessException {
  34. return (List) execute(new HibernateCallback() {
  35. public Object doInHibernate(Session session) throws HibernateException {
  36. Query queryObject = session.createQuery(queryString);
  37. prepareQuery(queryObject);
  38. if (values != null) {
  39. for (int i = 0; i < values.length; i++) {
  40. queryObject.setParameter(i, values[i]);
  41. }
  42. }
  43. return queryObject.list();
  44. }
  45. }, true);
  46. }

细心的朋友们可能发现了. 他们无一例外的都调用了一个叫做execute()的方法. 对了. 我们再看看execute的面目.到底他干了一件什么样的事情呢?]

  1. public Object execute(HibernateCallback action, boolean exposeNativeSession) throws DataAccessException {
  2. Session session = getSession();
  3. boolean existingTransaction = SessionFactoryUtils.isSessionTransactional(session, getSessionFactory());
  4. if (existingTransaction) {
  5. logger.debug("Found thread-bound Session for HibernateTemplate");
  6. }
  7. FlushMode previousFlushMode = null;
  8. try {
  9. previousFlushMode = applyFlushMode(session, existingTransaction);
  10. enableFilters(session);
  11. Session sessionToExpose = (exposeNativeSession ? session : createSessionProxy(session));
  12. Object result = action.doInHibernate(sessionToExpose);
  13. flushIfNecessary(session, existingTransaction);
  14. return result;
  15. }
  16. catch (HibernateException ex) {
  17. throw convertHibernateAccessException(ex);
  18. }
  19. catch (SQLException ex) {
  20. throw convertJdbcAccessException(ex);
  21. }
  22. catch (RuntimeException ex) {
  23. // Callback code threw application exception...
  24. throw ex;
  25. }
  26. finally {
  27. if (existingTransaction) {
  28. logger.debug("Not closing pre-bound Hibernate Session after HibernateTemplate");
  29. disableFilters(session);
  30. if (previousFlushMode != null) {
  31. session.setFlushMode(previousFlushMode);
  32. }
  33. }
  34. else {
  35. SessionFactoryUtils.releaseSession(session, getSessionFactory());
  36. }
  37. }
  38. }

抛掉其他的不管. finally中我们可以看到. 如果existingTransaction 他会

logger.debug("Not closing pre-bound Hibernate Session after HibernateTemplate");
disableFilters(session);
if (previousFlushMode != null) {
session.setFlushMode(previousFlushMode);
}

他并没有立即关闭session.

否则
SessionFactoryUtils.releaseSession(session, getSessionFactory());

他释放掉了session . 真的close()了吗?

我们在看看sessionFactoryUtil.的releaseSession()

  1. public static void releaseSession(Session session, SessionFactory sessionFactory) {
  2. if (session == null) {
  3. return;
  4. }
  5. // Only close non-transactional Sessions.
  6. if (!isSessionTransactional(session, sessionFactory)) {
  7. closeSessionOrRegisterDeferredClose(session, sessionFactory);
  8. }
  9. }
  10. static void closeSessionOrRegisterDeferredClose(Session session, SessionFactory sessionFactory) {
  11. Map holderMap = (Map) deferredCloseHolder.get();
  12. if (holderMap != null && sessionFactory != null && holderMap.containsKey(sessionFactory)) {
  13. logger.debug("Registering Hibernate Session for deferred close");
  14. Set sessions = (Set) holderMap.get(sessionFactory);
  15. sessions.add(session);
  16. if (!session.isConnected()) {
  17. // We're running against Hibernate 3.1 RC1, where Hibernate will
  18. // automatically disconnect the Session after a transaction.
  19. // We'll reconnect it here, as the Session is likely gonna be
  20. // used for lazy loading during an "open session in view" pase.
  21. session.reconnect();
  22. }
  23. }
  24. else {
  25. doClose(session);
  26. }
  27. }
  28. private static void doClose(Session session) {
  29. if (session != null) {
  30. logger.debug("Closing Hibernate Session");
  31. try {
  32. session.close();
  33. }
  34. catch (HibernateException ex) {
  35. logger.error("Could not close Hibernate Session", ex);
  36. }
  37. catch (RuntimeException ex) {
  38. logger.error("Unexpected exception on closing Hibernate Session", ex);
  39. }
  40. }
  41. }

spring管理hibernate session的问题探究的更多相关文章

  1. Spring管理Hibernate

    为什么要用Hibernate框架? 既然用Hibernate框架访问管理持久层,那为何又提到用Spring来管理以及整合Hibernate呢? 首先我们来看一下Hibernate进行操作的步骤.比如添 ...

  2. ssh整合hibernate 使用spring管理hibernate二级缓存,配置hibernate4.0以上二级缓存

    ssh整合hibernate 使用spring管理hibernate二级缓存,配置hibernate4.0以上二级缓存 hibernate  : Hibernate是一个持久层框架,经常访问物理数据库 ...

  3. spring管理hibernate,mybatis,一级缓存失效原因

    mybatis缓存:一级缓存和二级缓存 hibernate缓存:一级缓存和二级缓存 关于缓存: 缓存是介于物理数据源与应用程序之间,是对数据库中的数据复制一份临时放在内存中的容器, 其作用是为了减少应 ...

  4. Spring管理Hibernate事务

    在没有加入Spring来管理Hibernate事务之前,Hibernate对事务的管理的顺序是: 开始事务 提交事务 关闭事务 这样做的原因是Hibernate对事务默认是手动提交,如果不想手动提交, ...

  5. Spring管理 hibernate 事务配置的五种方式

    Spring配置文件中关于事务配置总是由三个组成部分,DataSource.TransactionManager和代理机制这三部分,无论是那种配置方法,一般变化的只是代理机制这块! 首先我创建了两个类 ...

  6. [转]利于ThreadLocal管理Hibernate Session

    摘自http://aladdin.iteye.com/blog/40986 在利用Hibernate开发DAO模块时,我们和Session打的交道最多,所以如何合理的管理Session,避免Sessi ...

  7. Spring异常解决 java.lang.NullPointerException,配置spring管理hibernate时出错

    @Repository public class SysUerCDAO { @Autowired private Hibernate_Credit hibernate_credit; /** * 根据 ...

  8. 关于spring管理hibernate事物

    下面这篇文章对我帮助很大.http://blog.csdn.net/jianxin1009/article/details/9202907

  9. Spring对hibernate的事物管理

    把Hibernate用到的数据源Datasource,Hibernate的SessionFactory实例,事务管理器HibernateTransactionManager,都交给Spring管理.一 ...

随机推荐

  1. 对于一个web工程,如果我们复制一个已有的工程粘贴到同一个workspace下,我们除了需要更改工程的名字还需要更改这个新工程的content root,否则会报错。

    对于一个web工程,如果我们复制一个已有的工程粘贴到同一个workspace下,我们除了需要更改工程的名字还需要更改这个新工程的content root,否则会报错.步骤如下: 右键新的工程---&g ...

  2. error:while loading shared libraries: libevent-2.1.so.6: cannot open shared object file: No such file or directory

    执行 memcached 启动命令时,报错,提示:error while loading shared libraries: libevent-2.1.so.6: cannot open shared ...

  3. Debian 如何使用测试版更新软件包到最新的版本

    #vim /etc/apt/sources.list 将版本代号替换成 testing 然后更新,应可以安装最新的软件包了.

  4. 邹欣,现代软件工程讲义:单元测试&回归测试

    http://www.cnblogs.com/xinz/archive/2011/11/20/2255830.html 邹欣, 现代软件工程讲义 2 开发技术 - 单元测试 & 回归测试

  5. Oracle学习笔记(一)

    用户与表空间 系统用户: 一.系统用户级别sys.system 最高级(sys级别高于system)sysman 操作企业管理器使用的scott 创始人之一的名字scott默认密码是tiger登录方法 ...

  6. cin和gitchar的区别

    cin是iostream(输入输出类) 类下的istream(输入类)类的对象,作用是顺序输入字符串.cin.get()是cin的方法.cin.get()是C++面向对象的操作,getchar()是C ...

  7. C的打印输出格式

    #include<stdio.h> int main() { float test1=12.3224356546565461-0.1; int test2=13; char test3[] ...

  8. Java程序中做字符串拼接时可以使用的MessageFormat.format

    Java里从来少不了字符串拼接的活,Java程序员也肯定用到过StringBuffer,StringBuilder,以及被编译器优化掉的+=.但这些都和下文要谈的无关. 比如有这样的字符串: 张三将去 ...

  9. Android-sdcard广播的接收处理

    有时候Android手机在开机成功后的那几秒会在状态栏通知,Sdcard开始扫描,Sdcard扫描完成,等信息 当Sdcard的状态发生改变后,系统会自动的发出广播 Sdcard的状态: 1.moun ...

  10. Objective-C 学习笔记(二) 函数

    Objective-C 函数 定义一个方法 在Objective-C编程的方法定义的一般形式如下: - (return_type) method_name:( argumentType1 )argum ...