来源:http://www.yybean.com/opensessioninviewfilter-role-and-configuration
一、作用

Spring为我们解决Hibernate的Session的关闭与开启问题。 Hibernate 允许对关联对象、属性进行延迟加载,但是必须保证延迟加载的操作限于同一个 Hibernate Session 范围之内进行。如果 Service 层返回一个启用了延迟加载功能的领域对象给 Web 层,当 Web 层访问到那些需要延迟加载的数据时,由于加载领域对象的 Hibernate Session 已经关闭,这些导致延迟加载数据的访问异常

(eg: org.hibernate.LazyInitializationException:(LazyInitializationException.java:42)
- failed to lazily initialize a collection of role: cn.easyjava.bean.product.ProductType.childtypes, no session or session was closed org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: cn.easyjava.bean.product.ProductType.childtypes, no session or session was closed)

用来把一个Hibernate Session和一次完整的请求过程对应的线程相绑定。目的是为了实现"Open Session in View"的模式。例如: 它允许在事务提交之后延迟加载显示所需要的对象。

而Spring为我们提供的OpenSessionInViewFilter过滤器为我们很好的解决了这个问题。OpenSessionInViewFilter的主要功能是用来把一个Hibernate Session和一次完整的请求过程对应的线程相绑定。目的是为了实现"Open Session in View"的模式。例如: 它允许在事务提交之后延迟加载显示所需要的对象。 OpenSessionInViewFilter 过滤器将 Hibernate Session 绑定到请求线程中,它将自动被 Spring 的事务管理器探测到。所以 OpenSessionInViewFilter 适用于 Service 层使用HibernateTransactionManager 或 JtaTransactionManager 进行事务管理的环境,也可以用于非事务只读的数据操作中。

二、配置

它有两种配置方式OpenSessionInViewInterceptor和OpenSessionInViewFilter(具体参看SpringSide),功能相同,只是一个在web.xml配置,另一个在application.xml配置而已。

Open Session In View在request把session绑定到当前thread期间一直保持hibernate session在open状态,使session在request的整个期间都可以使用,如在View层里PO也可以lazy loading数据,如 ${ company.employees }。当View 层逻辑完成后,才会通过Filter的doFilter方法或Interceptor的postHandle方法自动关闭session。

OpenSessionInViewInterceptor配置

<beans>

 

<bean name="openSessionInViewInterceptor" 

 

class="org.springframework.orm.hibernate3.support.OpenSessionInViewInterceptor"> 

 

<property name="sessionFactory"> 

 

<ref bean="sessionFactory"/> 

 

</property> 

 

</bean>

 

<bean id="urlMapping"

 

class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">

 

<property name="interceptors"> 

 

<list>

 

<ref bean="openSessionInViewInterceptor"/> 

 

</list> 

 

</property>

 

<property name="mappings">

 

...

 

</property> 

 

</bean>

 

...

 

</beans>

 

OpenSessionInViewFilter配置

<web-app> 

 

... 

 

<filter> 

 

<filter-name>hibernateFilter</filter-name>

 

<filter-class>

 

org.springframework.orm.hibernate3.support.OpenSessionInViewFilter

 

</filter-class>

 

<!-- singleSession默认为true,若设为false则等于没用OpenSessionInView -->

 

<init-param>

 

<param-name>singleSession</param-name>

 

<param-value>true</param-value> 

 

</init-param> 

 

</filter> 

 

...

 

<filter-mapping>

 

<filter-name>hibernateFilter</filter-name> 

 

<url-pattern>*.do</url-pattern>

 

</filter-mapping>

 

... 

 

</web-app>

 

三、注意事项

很多人在使用OpenSessionInView过程中提及一个错误:

org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.NEVER) – turn your Session into FlushMode.AUTO or remove ‘readOnly’ marker from transaction definition

看看OpenSessionInViewFilter里的几个方法

protected void doFilterInternal(HttpServletRequest request,

 

HttpServletResponse response,FilterChain filterChain)

 

throws ServletException, IOException {

 

 SessionFactory sessionFactory = lookupSessionFactory();

 

 logger.debug("Opening Hibernate Session in OpenSessionInViewFilter");

 

 Session session = getSession(sessionFactory);

 

 TransactionSynchronizationManager.bindResource(

 

  sessionFactory, new SessionHolder(session));

 

try {

 

filterChain.doFilter(request, response);

 

}

 

finally {

 

 TransactionSynchronizationManager.unbindResource(sessionFactory);

 

logger.debug("Closing Hibernate Session in OpenSessionInViewFilter");

 

closeSession(session, sessionFactory);

 

 }

 

}

 

protected Session getSession(SessionFactory sessionFactory)

 

throws DataAccessResourceFailureException {

 

Session session = SessionFactoryUtils.getSession(sessionFactory, true);

 

  session.setFlushMode(FlushMode.NEVER);

 

  return session;

 

} 

 

protected void closeSession(Session session, SessionFactory sessionFactory)

 

throws CleanupFailureDataAccessException {

 

  SessionFactoryUtils.closeSessionIfNecessary(session, sessionFactory);

 

}

 

可以看到OpenSessionInViewFilter在getSession的时候,会把获取回来的session的flush mode 设为FlushMode.NEVER。然后把该sessionFactory绑定到 TransactionSynchronizationManager,使request的整个过程都使用同一个session,在请求过后再接除该 sessionFactory的绑定,最后closeSessionIfNecessary根据该 session是否已和transaction绑定来决定是否关闭session。在这个过程中,若HibernateTemplate 发现自当前session有不是readOnly的transaction,就会获取到FlushMode.AUTO Session,使方法拥有写权限。

public static void closeSessionIfNecessary(Session session, SessionFactory  sessionFactory) 

 

throws CleanupFailureDataAccessException { 

 

if (session == null ||

 

TransactionSynchronizationManager.hasResource(sessionFactory)) {

 

return; 

 

} 

 

logger.debug("Closing Hibernate session");

 

try { 

 

session.close(); 

 

} 

 

catch (JDBCException ex) {

 

// SQLException underneath 

 

throw new CleanupFailureDataAccessException("Could not close Hibernate session", ex.getSQLException()); 

 

} 

 

catch (HibernateException ex) {

 

throw new CleanupFailureDataAccessException("Could not close Hibernate session",  ex); 

 

}

 

} 

 

也即是,如果有不是readOnly的transaction就可以由Flush.NEVER转为Flush.AUTO,拥有 insert,update,delete操作权限,如果没有transaction,并且没有另外人为地设flush model的话,则doFilter的整个过程都是Flush.NEVER。所以受transaction保护的方法有写权限,没受保护的则没有。

采用spring的事务声明,使方法受transaction控制

<bean id="baseTransaction"

 

class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"

 

abstract="true">

 

<property name="transactionManager" ref="transactionManager"/>

 

<property name="proxyTargetClass" value="true"/>

 

<property name="transactionAttributes">

 

<props>

 

<prop key="get*">PROPAGATION_REQUIRED,readOnly</prop>

 

<prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>

 

<prop key="load*">PROPAGATION_REQUIRED,readOnly</prop>

 

<prop key="save*">PROPAGATION_REQUIRED</prop>

 

<prop key="add*">PROPAGATION_REQUIRED</prop>

 

<prop key="update*">PROPAGATION_REQUIRED</prop>

 

<prop key="remove*">PROPAGATION_REQUIRED</prop>

 

</props>

 

</property>

 

</bean> 

 

<bean id="userService" parent="baseTransaction"> 

<property name="target">

 

<bean class="com.phopesoft.security.service.impl.UserServiceImpl"/>

 

</property>

 

</bean>

 

对于上例,则以save,add,update,remove开头的方法拥有可写的事务,如果当前有某个方法,如命名为importExcel(),则因没有transaction而没有写权限,这时若方法内有insert,update,delete操作的话,则需要手动设置flush model为Flush.AUTO,如

  1. session.setFlushMode(FlushMode.AUTO);

  2. session.save(user);

  3. session.flush();

尽 管Open Session In View看起来还不错,其实副作用不少。看回上面OpenSessionInViewFilter的doFilterInternal方法代码,这个方法实际上是被父类的doFilter调用的,因此,我们可以大约了解的OpenSessionInViewFilter调用流程:

request(请求)->open session并开始transaction->controller->View(Jsp)->结束transaction并 close session.

一切看起来很正确,尤其是在本地开发测试的时候没出现问题,但试想下如果流程中的某一步被阻塞的话,那在这期间connection就一直被占用而不释放。最有可能被阻塞的就是在写Jsp这步,一方面可能是页面内容大,response.write的时间长,另一方面可能是网速慢,服务器与用户间传输时间久。当大量这样的情况出现时,就有连接池连接不足,造成页面假死现象。

Open Session In View是个双刃剑,放在公网上内容多流量大的网站请慎用

参考以及大段的copy自:

http://blog.csdn.net/sunsea08/archive/2009/09/12/4545186.aspx

http://blog.sina.com.cn/s/blog_5dc12c490100crr5.html

Hibernate Open Session In View模式【转】的更多相关文章

  1. open Session In View模式

    首先看图说话: ****Open Session In View模式的主要思想是:在用户的每一次请求过程始终保持一个Session对象打开着*** 接下来就是代码: +++++++++++++++++ ...

  2. hibernate open session in view 抛出异常解决方法

    在使用open-session-in-view的时候,如果使用不当,有可能抛出两种异常1,NonUniqueObjectException2,在配合spring使用的时候会可能会抛出org.sprin ...

  3. open Session In View和过滤器配置

    Open Session In View模式的主要思想是:当Web Request(浏览器请求)开始时,自动打开Session,当Web Request结束时,自动关闭Session.也就是说,Ses ...

  4. Open Session In View

    Open Session In View模式的主要思想是:在用户的每一次请求过程始终保持一个Session对象打开着 实现步骤: 步骤一.创建一个Web项目,创建包cn.happy.util,创建Hi ...

  5. Hibernate,Session清理缓存时间点

    当应用程序调用org.hibernate.Transaction的commit()的时候,commit()方法先清理缓存,然后再向数据库提交事务. 当应用程序显示调用Session.flush()方法 ...

  6. Spring Open Session In View

    提出:session在应用层就关闭,所以持久化要在应用层,但是到了view层持久化则session已经关闭 解决:session延迟到view层再关闭 原理:session(整个requestScop ...

  7. atitit. 解决org.hibernate.SessionException Session is closed

    atitit. 解决org.hibernate.SessionException Session is closed   #--现象:: org.hibernate.SessionException ...

  8. Hibernate中Session的get和load

    hibernate中Session接口提供的get()和load()方法都是用来获取一个实体对象,在使用方式和查询性能上有一些区别.测试版本:hibernate 4.2.0. get Session接 ...

  9. ASP.NET会话(Session)保存模式--终于知道session为什么丢失了

    [原创]ASP.NET会话(Session)保存模式 作者:寒羽枫(cityhunter172) 大家好,已有四个多月没写东东啦.今日抽空就说一下 Session 在 .Net v1.0/v1.1 中 ...

随机推荐

  1. BZOJ 4568 幸运数字

    题目传送门 4568: [Scoi2016]幸运数字 Time Limit: 60 Sec Memory Limit: 256 MB Description A 国共有 n 座城市,这些城市由 n-1 ...

  2. <<< Oracle表空间创建、修改、删除基本操作

    ORACLE 中,表空间是数据管理的基本方法,所有用户的对象要存放在表空间中,也就是用户有空间的使用权,才能创建用户对象 create tablespace myts  //建立表空间,名为mytsd ...

  3. Java学习笔记10

    31.编写当年龄age大于13且小于18时结果为true的布尔表达式age > 13 && age < 18 32.编写当体重weight大于50或身高大于160时结果为t ...

  4. CSS3实现阴阳鱼

    直接上代码: <!doctype html> <html> <head> <meta charset="utf-8" /> < ...

  5. Linux下如何不停止服务,清空nohup.out文件

    tips:最近发现有不少人在百度这个问题,当初如易我也是初学者,随便从网上搜了一下,就转过来了,不过为了避免搜索结果同质化,为大家提供更翔实的参考,我将nohup.out相关知识整理汇总如下: 1.n ...

  6. codevs1316 文化之旅

    题目描述 Description 有一位使者要游历各国,他每到一个国家,都能学到一种文化,但他不愿意学习任何一种文化超过一次(即如果他学习了某种文化,则他就不能到达其他有这种文化的国家).不同的国家可 ...

  7. java中的wait(),notify(),notifyAll(),synchronized方法

    wait(),notify(),notifyAll()三个方法不是Thread的方法,而是Object的方法.意味着所有对象都有这三个方法,因为每个对象都有锁,所以自然也都有操作锁的方法了.这三个方法 ...

  8. PHP header函数使用大全

    PHP header函数大全 header('Content-Type: text/html; charset=utf-8'); header('Location: http://52php.cnbl ...

  9. PHP控制输出不缓存头

    @header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); @header("Cache-Control: no-cache, ...

  10. Swift3.0P1 语法指南——函数

    原档:https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programmi ...