- 浏览: 189419 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
刘一杰:
...
Database Link详解 -
chaomc:
...
Database Link详解 -
mz0827:
这玩意儿返回的是那个字段的list
hibernate去掉重复记录 -
kadan_james:
...
Database Link详解 -
moonights:
惭愧了 这个不是俺写的.......
有关JAVA的内存泄露的文章
HibernateDaoSupport 类session未关闭导致的连接泄露问题 收藏
Spring+Hibernate做项目, 发现有member在不加事务的情况下就去调用 getSession() 方法, 结果导致数据库连接不能释放, 也无法正常的提交事务(只能做查询, 不能做save(), update()). 如果配合连接池使用的话, 不出几分钟就会导致连接池无法拿到新连接的情况.
不过, 只要给DAO或者Service加入了事务, 就不会出现连接泄漏的问题.
谈谈解决方案:
最佳方案: 加入事务, 例如 tx 标签或者 @Transactional 都可以.
最笨方案: 修改代码, 使用 HibernateTemplate 来完成相关操作:
public List queryAll( final String hql, final Object… args) { List list = getHibernateTemplate().executeFind( new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session.createQuery(hql); for ( int i =0; i < args. length ; i++) { query.setParameter(i, args[i]); } List list = query.list(); return list; } }); return list; } public Serializable save(Object entity) { return getHibernateTemplate().save(entity); }
但是缺陷显而易见, 要有N多的代码要进行改动.
HibernateDaoSupport 代码里面的原始说明文档指出直接调用getSession()方法必须用配套的releaseSession(Session session)来释放连接, 根据我的测试, 就算配置了 OpenSessionInViewFilter(前提: 不加事务), 也不会关闭这个Session. 也许有人说可以用连接池, 这种情况和Db pool没关系, 用了pool就会发现连接很快就会满, 只会over的更快. 反过来, 如果不配置OpenSessionInViewFilter, 在DAO里提前用 releaseSession()关闭连接, 就可能会在JSP中出现Lazy载入异常. 另一个不配事务的问题就是无法更新或者插入数据. 下面就是原始的JavaDoc中的说明:
/** * Obtain a Hibernate Session, either from the current transaction or * a new one. The latter is only allowed if the * {@link org.springframework.orm.hibernate3.HibernateTemplate#setAllowCreate “allowCreate”} * setting of this bean’s {@link #setHibernateTemplate HibernateTemplate} is “true”. * <p><b> Note that this is not meant to be invoked from HibernateTemplate code * but rather just in plain Hibernate code. </b> Either rely on a thread – bound * Session or use it in combination with {@link #releaseSession} . * <p> In general, it is recommended to use HibernateTemplate, either with * the provided convenience operations or with a custom HibernateCallback * that provides you with a Session to work on. HibernateTemplate will care * for all resource management and for proper exception conversion. * @return the Hibernate Session * @throws DataAccessResourceFailureException if the Session couldn’t be created * @throws IllegalStateException if no thread – bound Session found and allowCreate=false * @see org.springframework.orm.hibernate3.SessionFactoryUtils#getSession(SessionFactory, boolean) */ protected final Session getSession() throws DataAccessResourceFailureException, IllegalStateException { return getSession( this . hibernateTemplate .isAllowCreate()); } /** * Close the given Hibernate Session, created via this DAO’s SessionFactory, * if it isn’t bound to the thread (i.e. isn’t a transactional Session). * <p> Typically used in plain Hibernate code, in combination with * {@link #getSession} and {@link #convertHibernateAccessException} . * @param session the Session to close * @see org.springframework.orm.hibernate3.SessionFactoryUtils#releaseSession */ protected final void releaseSession(Session session) { SessionFactoryUtils.releaseSession(session, getSessionFactory()); }
不需要改原始代码的最终方案(方案三):
不过, 如果项目里已经有了大量直接调用getSession()而且没有加入事务配置的代码(如历史原因导致), 这些代码太多, 没法一一修改, 那就最好寻求其它方案, 最好是不需要修改原来的Java代码的方案. 我采用的这第三个方案是重写 HibernateDaoSupport用ThreadLocal保存Session列表并编写一个配套的过滤器来显式关闭Session, 并在关闭之前尝试提交事务. 下面是重写的 HibernateDaoSupport 代码:
package org.springframework.orm.hibernate3.support; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.List; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.springframework.dao.DataAccessException; import org.springframework.dao.DataAccessResourceFailureException; import org.springframework.dao.support.DaoSupport; import org.springframework.orm.hibernate3.HibernateTemplate; import org.springframework.orm.hibernate3.SessionFactoryUtils; /** * 修改后的避免连接泄漏的 HibernateDaoSupport, 多连接版本, 不保证跨DAO的事务. * */ publicabstractclass HibernateDaoSupport extends DaoSupport { /** 使用 ThreadLocal 保存打开的 Session 列表 */ privatestaticfinal ThreadLocal< List<Session> > sessions = new ThreadLocal< List<Session> >(); /** * 获取Hibernate连接. * @return */ publicstatic List<Session> getSessionList() { //1. 先看看是否有了List get() List list = sessions.get(); // 2. 没有的话从创建一个, put() if(list == null) { list = new ArrayList(); sessions.set(list); } // 3. 返回 Session return list; } /** * 关闭当前线程中未正常释放的 Session. */ publicstaticvoid closeSessionList() { // 1. 先看看是否有了List get() List<Session> list = sessions.get(); // 2. 有的话就直接关闭 if(list != null) { System.out.println(SimpleDateFormat.getDateTimeInstance().format(new java.util.Date()) + " -------- 即将释放未正常关闭的 Session"); for(Session session : list) { System.out.println("正在关闭 session =" + session.hashCode()); // ! 关闭前事务提交 if(session.isOpen()) { try { session.getTransaction().commit(); } catch(Exception ex) { try { session.getTransaction().rollback(); } catch (HibernateException e) { // TODO Auto-generated catch block //e.printStackTrace(); } } try { session.close(); } catch(Exception ex) { } } //releaseSession(session); // 无法调用 } sessions.remove(); } } private HibernateTemplate hibernateTemplate; /** * Set the Hibernate SessionFactory to be used by this DAO. * Will automatically create a HibernateTemplate for the given SessionFactory. * @see #createHibernateTemplate * @see #setHibernateTemplate */ publicfinalvoid setSessionFactory(SessionFactory sessionFactory) { if (this.hibernateTemplate == null || sessionFactory != this.hibernateTemplate.getSessionFactory()) { this.hibernateTemplate = createHibernateTemplate(sessionFactory); } } /** * Create a HibernateTemplate for the given SessionFactory. * Only invoked if populating the DAO with a SessionFactory reference! * <p>Can be overridden in subclasses to provide a HibernateTemplate instance * with different configuration, or a custom HibernateTemplate subclass. * @param sessionFactory the Hibernate SessionFactory to create a HibernateTemplate for * @return the new HibernateTemplate instance * @see #setSessionFactory */ protected HibernateTemplate createHibernateTemplate(SessionFactory sessionFactory) { returnnew HibernateTemplate(sessionFactory); } /** * Return the Hibernate SessionFactory used by this DAO. */ publicfinal SessionFactory getSessionFactory() { return (this.hibernateTemplate != null ? this.hibernateTemplate.getSessionFactory() : null); } /** * Set the HibernateTemplate for this DAO explicitly, * as an alternative to specifying a SessionFactory. * @see #setSessionFactory */ publicfinalvoid setHibernateTemplate(HibernateTemplate hibernateTemplate) { this.hibernateTemplate = hibernateTemplate; } /** * Return the HibernateTemplate for this DAO, * pre-initialized with the SessionFactory or set explicitly. * <p><b>Note: The returned HibernateTemplate is a shared instance.</b> * You may introspect its configuration, but not modify the configuration * (other than from within an {@link #initDao} implementation). * Consider creating a custom HibernateTemplate instance via * <code>new HibernateTemplate(getSessionFactory())</code>, in which * case you're allowed to customize the settings on the resulting instance. */ publicfinal HibernateTemplate getHibernateTemplate() { returnthis.hibernateTemplate; } protectedfinalvoid checkDaoConfig() { if (this.hibernateTemplate == null) { thrownew IllegalArgumentException("'sessionFactory' or 'hibernateTemplate' is required"); } } /** * Obtain a Hibernate Session, either from the current transaction or * a new one. The latter is only allowed if the * {@link org.springframework.orm.hibernate3.HibernateTemplate#setAllowCreate "allowCreate"} * setting of this bean's {@link #setHibernateTemplate HibernateTemplate} is "true". * <p><b>Note that this is not meant to be invoked from HibernateTemplate code * but rather just in plain Hibernate code.</b> Either rely on a thread-bound * Session or use it in combination with {@link #releaseSession}. * <p>In general, it is recommended to use HibernateTemplate, either with * the provided convenience operations or with a custom HibernateCallback * that provides you with a Session to work on. HibernateTemplate will care * for all resource management and for proper exception conversion. * @return the Hibernate Session * @throws DataAccessResourceFailureException if the Session couldn't be created * @throws IllegalStateException if no thread-bound Session found and allowCreate=false * @see org.springframework.orm.hibernate3.SessionFactoryUtils#getSession(SessionFactory, boolean) */ protectedfinal Session getSession() throws DataAccessResourceFailureException, IllegalStateException { Session session = getSession(this.hibernateTemplate.isAllowCreate()); // 开始事务 try { session.beginTransaction(); } catch (HibernateException e) { e.printStackTrace(); } getSessionList().add(session); return session; } /** * Obtain a Hibernate Session, either from the current transaction or * a new one. The latter is only allowed if "allowCreate" is true. * <p><b>Note that this is not meant to be invoked from HibernateTemplate code * but rather just in plain Hibernate code.</b> Either rely on a thread-bound * Session or use it in combination with {@link #releaseSession}. * <p>In general, it is recommended to use * {@link #getHibernateTemplate() HibernateTemplate}, either with * the provided convenience operations or with a custom * {@link org.springframework.orm.hibernate3.HibernateCallback} that * provides you with a Session to work on. HibernateTemplate will care * for all resource management and for proper exception conversion. * @param allowCreate if a non-transactional Session should be created when no * transactional Session can be found for the current thread * @return the Hibernate Session * @throws DataAccessResourceFailureException if the Session couldn't be created * @throws IllegalStateException if no thread-bound Session found and allowCreate=false * @see org.springframework.orm.hibernate3.SessionFactoryUtils#getSession(SessionFactory, boolean) */ protectedfinal Session getSession(boolean allowCreate) throws DataAccessResourceFailureException, IllegalStateException { return (!allowCreate ? SessionFactoryUtils.getSession(getSessionFactory(), false) : SessionFactoryUtils.getSession( getSessionFactory(), this.hibernateTemplate.getEntityInterceptor(), this.hibernateTemplate.getJdbcExceptionTranslator())); } /** * Convert the given HibernateException to an appropriate exception from the * <code>org.springframework.dao</code> hierarchy. Will automatically detect * wrapped SQLExceptions and convert them accordingly. * <p>Delegates to the * {@link org.springframework.orm.hibernate3.HibernateTemplate#convertHibernateAccessException} * method of this DAO's HibernateTemplate. * <p>Typically used in plain Hibernate code, in combination with * {@link #getSession} and {@link #releaseSession}. * @param ex HibernateException that occured * @return the corresponding DataAccessException instance * @see org.springframework.orm.hibernate3.SessionFactoryUtils#convertHibernateAccessException */ protectedfinal DataAccessException convertHibernateAccessException(HibernateException ex) { returnthis.hibernateTemplate.convertHibernateAccessException(ex); } /** * Close the given Hibernate Session, created via this DAO's SessionFactory, * if it isn't bound to the thread (i.e. isn't a transactional Session). * <p>Typically used in plain Hibernate code, in combination with * {@link #getSession} and {@link #convertHibernateAccessException}. * @param session the Session to close * @see org.springframework.orm.hibernate3.SessionFactoryUtils#releaseSession */ protectedfinalvoid releaseSession(Session session) { SessionFactoryUtils.releaseSession(session, getSessionFactory()); } }
用这个类来覆盖Spring内置的那个HibernateDaoSupport, 然后随便编写一个过滤器, 如下所示:
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException { req.setCharacterEncoding(this.charset); chain.doFilter(req, res); // 关闭遗漏的 Session HibernateDaoSupport.closeSessionList(); }
把这个过滤器配置在过滤器链的第一个, 就OK了.
最后也许会有人说, 为什么不用tx标签在Spring中来配置一个通配符就全部加入了事务了呢? 不过很遗憾, 经测试发现此方式无法实现跨DAO的Hibernate事务, 所以只好很无奈的放弃了这种方式.
配置事务管理:http://www.blogjava.net/robbie/archive/2009/04/05/264003.html
原帖:http://yhkyo.com/archives/196
发表评论
-
struts2备忘
2013-08-16 09:01 01:Tags: <body> ... -
spring为ApplicationContext提供有三种实现
2011-03-22 11:14 1017spring为ApplicationContext提供的3 ... -
Spring中ApplicationContextAware接口用法
2011-03-21 11:50 1478Spring中ApplicationContextAwar ... -
Hibernate的拦截器和监听器(转)
2011-03-01 09:45 1585拦截器(Intercept):顾 ... -
优化Hibernate性能的几点建议
2011-02-25 17:05 8271、针对Oracle数据库而言,Fetch Size ... -
Hibernate Query的list()和iterate()的区别
2011-02-25 16:54 1090Query的两个方法,list() 和 iterate() ... -
Hibernate SQL优化技巧
2011-02-25 16:52 1045在Hibernate的映射文件的class tag使用dyna ... -
hibernate去掉重复记录
2011-02-22 16:08 1232DetachedCriteria detached ... -
问题积累—关于 No Dialect mapping for JDBC type: 错误
2010-06-10 14:58 1938参考了http://www.iteye.com/topic/5 ... -
问题积累—hibernate char 字段的数据表只查出一个字符
2010-06-04 09:21 1298之前遇到的问题,此处记录一下 问题描述: orcal ... -
Struts2、Hibernate、Spring整合的泛型DAO,以及通用的分页技术
2010-06-01 15:35 787http://blog.csdn.net/csuliky/ar ... -
hibernate oracle blob数据类型的处理
2010-01-25 11:49 887oracle数据库建表语句 create table stu ... -
通用的泛型GenericHibernateDao
2010-01-07 15:46 1024编写Spring+Hibernate框架 ... -
SSH的两种组合配置方法
2009-07-31 13:03 727既可以使用 web.xml 来使 Web 容器加载 ...
相关推荐
### hibernateDaoSupport类的运用实例 #### 一、引言 `hibernateDaoSupport`是Spring框架中提供的一种支持Hibernate操作的基类。它主要用于简化Hibernate与Spring集成过程中的编码工作,使得开发人员能够更加专注于...
HibernateDaoSupport 类的jar HibernateDao 的jar
这个类的主要作用是为实现DAO层的类提供对Hibernate SessionFactory和Session的访问,从而简化了DAO的实现,使得开发者无需直接管理Session的生命周期,避免了常见的资源泄露问题。 二、`HibernateDaoSupport`的...
根据给定的信息,我们可以深入探讨Spring框架中与Hibernate集成的相关知识点,特别关注“HibernateDaoSupport”类及其在Spring环境中的应用。以下是对标题、描述以及部分文件内容的详细解析: ### 一、Spring与...
在Java开发领域,尤其是Spring框架的应用中,`HibernateDaoSupport`和`@Autowired`是两个非常重要的概念。它们分别代表了Hibernate对DAO层的支持以及Spring框架的依赖注入机制。接下来,我们将深入探讨这两个知识点...
Spring hibernate3. HibernateDaoSupport 源码
`HibernateDaoSupport`是Spring框架中为Hibernate提供的一个辅助类,用于简化DAO(数据访问对象)层的开发。本文将深入探讨`HibernateDaoSupport`的二次封装,以及如何通过封装来实现快速的统计、查询、修改和删除...
SSH整合(其中dao用extends HibernateDaoSupport方式)总结【图解】
为了实现分页功能,我们首先定义了一个名为`MyHibernateDaoSupport`的类,该类继承自`HibernateDaoSupport`。`HibernateDaoSupport`类本身提供了很多便利的方法,如执行Hibernate操作等。接下来我们将在这个类中实现...
`HibernateDaoSupport`是Spring提供的一类辅助类,它提供了与Hibernate SessionFactory的连接,简化了Hibernate的使用。首先,我们需要创建一个基础的DAO接口,然后创建其实现类并继承`HibernateDaoSupport`。例如:...
【HibernateDaoSupport】是Spring框架中的一个抽象类,主要用于简化Hibernate的数据访问操作,它为DAO层提供了方便的事务管理和Session管理。这个类是Spring与Hibernate集成的重要组件,尤其对于初学者来说,理解其...
HibernateTemplate 是 Spring 提供的一个模板类,它封装了对 Hibernate Session 的操作,避免了直接与 Session 进行交互时出现的事务管理、异常处理等问题。HibernateTemplate 提供了一组丰富的静态方法,涵盖了大...
这些类通过继承`HibernateDaoSupport`或类似类来实现数据访问逻辑。这样做的好处在于,具体DAO类只需要关注业务逻辑的实现,而不需要关心底层框架的具体实现细节。 3. **封装框架依赖**:通过`HibernateDaoSupport`...
### HibernateDaoSupport与JdbcDaoSupport详解 #### 一、概述 在软件开发过程中,特别是企业级应用开发中,数据库操作是一项重要的任务。为了简化这一过程并提高代码的可维护性和扩展性,Spring框架提供了多种支持...
在"commons-dbcp-1.2.2.jar"中,DBCP集成了Pool,实现了对数据库连接的池化管理,使得多个并发的数据库操作可以共享同一组连接,避免了频繁地创建和关闭数据库连接,从而大大提高了数据库访问的性能并减少了系统的...
在Spring框架中,`getSession()`是`org.springframework.orm.hibernate3.support.HibernateDaoSupport`类提供的一个方法,它可以在当前事务中获取或开启一个新的Hibernate Session。然而,仅仅在每次查询后调用`...
这样可以避免因忘记关闭Session而导致的资源泄漏问题。 3. **异常转换**:Spring将Hibernate抛出的异常转换为Spring的`DataAccessException`子类,这样可以保持应用程序与持久层之间的异常处理一致,便于进行异常...
例如,通过`session.save(user)`保存新用户,`session.get(User.class, userId)`获取用户信息,以此验证实体类和映射文件的正确性。 通过以上步骤,我们成功地在MyEclipse 2014中使用Hibernate 3生成了数据库实体类...
在Spring框架中,`DaoSupport`是一个抽象类,为DAO实现提供了一些基础支持,比如初始化和关闭数据库资源。继承自`DaoSupport`的DAO类可以利用其提供的便利方法,如`getJdbcTemplate()`或`getHibernateTemplate()`,...
在一个线程内进行多次操作时,`getSession()`每次都会创建一个新的Session,可能导致数据库连接数过多,从而超出数据库允许的最大连接数。而`HibernateTemplate`则可以更好地控制和管理Session,避免这个问题。 ...