`

Open_Session_In_View详解

阅读更多

 

在没有使用Spring提供的Open Session In View情况下,因需要在service(or Dao)层里把session关闭,所以lazy loading true的话,要在应用层内把关系集合都初始化,如 company.getEmployees(),否则Hibernatesession already closed Exception; Open Session In View提供了一种简便的方法,较好地解决了lazy loading问题. 

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

Open Session In Viewrequestsession绑定到当前thread期间一直保持hibernate sessionopen状态,使sessionrequest的整个期间都可以使用,如在View层里PO也可以lazy loading数据,如${ company.employees }。当View层逻辑完成后,才会通过FilterdoFilter方法或InterceptorpostHandle方法自动关闭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);
}
 

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

 

 

  也即是,如果有不是readOnlytransaction就可以由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>
 

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

  session.setFlushMode(FlushMode.AUTO);

  session.save(user);

  session.flush();

 

  尽管Open Session In View看起来还不错,其实副作用不少。看回上面OpenSessionInViewFilterdoFilterInternal方法代码,这个方法实际上是被父类的doFilter调用的,因此,我们可以大约了解的OpenSessionInViewFilter调用流程:request(请求)->open session并开始transaction->controller->View(Jsp)->结束transactionclose session

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

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

 

分享到:
评论

相关推荐

    Open_Session_In_View详解.doc

    ### Open_Session_In_View详解 #### 一、背景与概念 在使用Hibernate进行对象持久化时,经常遇到的一个问题是关于懒加载(lazy loading)的处理。懒加载是一种优化技术,允许在真正需要某个关联对象的数据时才加载...

    oRTP 培训资料,介绍了部分ortp的api,供入门者学习

    oRTP(Open Real-Time Transport Protocol)是一种开源库,用于实现实时传输协议(RTP)和相关的RTCP(实时传输控制协议)。它主要用于VoIP(Voice over Internet Protocol)和其他需要实时音频、视频通信的应用。本...

    hibernate笔记

    Open Session in View(OSIV)模式是一种常见的Hibernate优化模式,主要用于提高读取操作的性能。在这种模式下,Session在整个HTTP请求周期内保持打开状态。 ##### OSIV 实现方式 - **Servlet Filter 方式**:最常见...

    java面试题实践收集及答案详解

    ### Java面试题实践收集及答案详解 #### 一、Java基础知识与面试题解析 ##### 1. 面试时应注意哪些事项? - **技术准备**:深入理解Java基础(如集合框架、多线程、异常处理等)、设计模式、算法与数据结构。 - *...

    Java笔试面试题详解

    1. **MVC设计思想**:MVC(Model-View-Controller)是一种软件设计模式,用于将业务逻辑(Model)、用户界面(View)和应用控制逻辑(Controller)分离。模型负责数据的管理和业务逻辑,视图负责展示数据,控制器...

    第4套PHP面试题1

    【PHP MVC设计模式详解及其应用】 MVC(Model-View-Controller)是一种广泛应用于Web开发的设计模式,旨在提高代码的组织结构和可维护性。在PHP中,MVC模式可以帮助开发者将应用程序的不同部分分离,使其职责更加...

    oracle 12 c ORA-01017: 用户名/口令无效; 登录被拒绝

    ### Oracle 12c ORA-01017 错误详解及解决方案 #### 错误概述 在Oracle数据库管理过程中,用户可能会遇到ORA-01017错误:“用户名/口令无效;登录被拒绝”。这一错误通常出现在尝试连接数据库时,提示提供的用户名...

    JProfiler 使用说明 如何分析 分析案例 中文版

    ### JProfiler 使用说明详解 #### 一、JProfiler简介及优势 JProfiler是一款高级的Java虚拟机(JVM)性能分析工具,相比JConsole、JVMM以及JMap等内置工具,JProfiler具备更为强大的功能和稳定性,尤其适用于复杂...

    org.springframework.web的jar包.zip

    《Spring框架Web模块详解——聚焦于WebSocket服务器端点支持》 在Java开发领域,Spring框架以其强大的功能和灵活的设计闻名,而`org.springframework.web`包是Spring框架中的一个重要部分,它提供了处理HTTP请求和...

    SSH常用面试题

    #### 十、Hibernate中的Open Session in View模式 1. **模式介绍:**Open Session in View模式是一种使用Hibernate时的高级技术,它通过在每个HTTP请求开始时打开一个Session,在请求结束时关闭这个Session,从而...

    oracle常用命令

    【Oracle常用命令详解】 Oracle数据库管理系统是全球广泛使用的数据库系统之一,掌握其常用命令对于数据库管理至关重要。本文将详细介绍Oracle的启动与关闭、数据字典的利用以及其他实用命令。 1. Oracle的启动和...

    Hibernate配置常见错误

    解决方案:理解并合理使用Open Session in View(OSIV)模式,或者在查询时显式调用`Hibernate.initialize()`方法。另外,可以考虑将懒加载改为急加载(Eager Fetching)。 六、HQL查询错误 错误表现:执行HQL语句...

    Spring @Transactional工作原理详解

    在某些情况下,如Open Session In View模式,持久化上下文可能会跨越多个事务,以解决懒加载异常。然而,这种模式可能导致性能问题和并发问题,因此需要谨慎使用。此外,使用`@PersistenceContext`的`...

    jprofiler_help

    - **Open Session Dialog(打开会话对话框)**:用于打开之前保存的会话文件。 通过以上详细介绍,我们可以看出 jProfiler 是一款功能强大且易于使用的 Java 性能分析工具。无论是初学者还是高级用户,都能够利用 ...

    android自定义相机连拍

    TextureView textureView = findViewById(R.id.texture_view); String cameraId = CameraManager.get().getCameraIdList()[0]; // 获取第一个相机ID ``` **二、配置相机** 使用CameraManager.openCamera()方法打开...

    LotusScript编程指导(第3卷)(英文)

    ### LotusScript编程指导(第3卷):Java_CORBA类详解 #### 一、概述 本文档《LotusScript编程指导(第3卷):Java_CORBA类》为IBM Lotus Domino Designer Version 7的官方指南之一,重点介绍了如何在Lotus环境中...

    JPROFILER使用说明

    ### JPROFILER 使用说明详解 #### 一、引言 JProfiler是一款强大的Java应用程序性能分析工具,它可以帮助开发者深入地了解Java应用的性能瓶颈,从而优化程序性能。本使用手册旨在详细介绍JProfiler的各项功能及...

    camera2preview-v1.0.zip

    《Android Camera2 API在SurfaceView中的预览应用详解》 在Android开发中,摄像头功能的使用至关重要,尤其是在创建各种拍照、录像或者实时滤镜的应用中。Camera2 API是Google自Android 5.0(API Level 21)开始...

    微信小程序学习笔记之登录API与获取用户信息操作图文详解

    &lt;view wx:else&gt;请升级微信版本&lt;/view&gt; ``` 对应的`login.js`中,处理`bindGetUserInfo`事件,打印用户信息: ```javascript Page({ data: { // 判断getUserInfo是否在当前版本可用 canIUse: wx.canIUse('button...

Global site tag (gtag.js) - Google Analytics