`
summernight
  • 浏览: 74226 次
  • 性别: Icon_minigender_2
社区版块
存档分类
最新评论

OpenSessionInViewFilter(转)

阅读更多
????? 最近工作中发现查询的时候超级慢,一个简单的都得10秒呢,所以看了看后台的SQL显示N多条SQL,想了想可能是表和表之间关系并用了延迟加载是false造成的。去网上找了找发现。
<filter>
??? ??? <filter-name>hibernateFilter</filter-name>
??? ??? <filter-class>
??? ??? ??? org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
??? ??? </filter-class>
??? </filter>

??? <filter-mapping>
??? ??? <filter-name>hibernateFilter</filter-name>
??? ??? <url-pattern>*.action</url-pattern>
??? </filter-mapping>
这样可以实现延迟加载非得设置=false的,这样可以将加载一直到页面显示完。可以将lazy=false去掉了.
原理(转):因为你在jsp上用比如user.class.classname取classname的时候(user和class一对多),session已经关闭了,除非你在action已经把class取出来,在页面上直接解析class.classname,openSessionInView的意思就 是延长session的生命周期,到了jsp层,session依然有效,所以就可以正确读取一对多的多方的属性值了.
但在删除的时候却出现了一个异常:
<clk><nobr style="border-bottom: 1px dotted rgb(102, 0, 255); color: rgb(102, 0, 255); background-color: transparent;" false="" this)="">错误代码:
? org.<clk><nobr style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" false"="" this)"="">springframework</nobr></clk>.dao.<clk><nobr style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" false"="" this)"="">InvalidDataAccessApiUsageException</nobr></clk><clk>: Write <nobr style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" false"="" this)"="">operations are not allowed in read-only mode (FlushMode.NEVER) - turn your Session into FlushMode.AUTO or remove 'readOnly'<clk>?marker from <nobr style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" false"="" this)"="">transaction definition <nobr style="border-bottom: 1px dotted rgb(102, 0, 255); color: rgb(102, 0, 255); background-color: transparent;" false="" this)="">
<clk><nobr style="border-bottom: 1px dotted rgb(102, 0, 255); color: rgb(102, 0, 255); background-color: transparent;" false="" this)="">
错误原因:
<clk>?<nobr style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" false"="" this)"="">OpenSessionInViewFilter在 getSession的时候,会把获取回来的session的flush mode 设为FlushMode.NEVER。然后把该sessionFactory绑定到 TransactionSynchronizationManager,使request的整个过程都使用同一个session,在请求过后再接除该 sessionFactory的绑定,最后closeSessionIfNecessary根 据该session是否已和transaction绑定来决定是否关闭session。在这个过程中,若HibernateTemplate 发现自当前session有不是readOnly的transaction,就会获取到FlushMode.AUTO Session,使方法拥有写权限。
也即是,如果有不是readOnly的transaction就可以由Flush.NEVER转为 Flush.AUTO,拥有insert,update,delete操作权限,如果没有transaction,并且没有另外人为地设flush model的话,则doFilter的整个过程都是Flush.NEVER。所以受transaction保护的方法有写权限,没受保护的则没有。

解决办法:
? 采用spring的事务声明,使方法受transaction控制
<bean id="baseTransaction" <br="">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>
<nobr style="border-bottom: 1px dotted rgb(102, 0, 255); color: rgb(102, 0, 255); background-color: transparent;" false="" this)="">
<clk><nobr style="border-bottom: 1px dotted rgb(102, 0, 255); color: rgb(102, 0, 255); background-color: transparent;" false="" this)=""><clk><nobr style="border-bottom: 1px dotted rgb(102, 0, 255); color: rgb(102, 0, 255); background-color: transparent;" false="" this)="">
分享到:
评论

相关推荐

    SSH项目整合示例【OpenSessionInView】所用到的jar包

    SSH是Java Web开发中的一个流行框架组合,由Struts、Hibernate和Spring三个组件构成。这个框架集成提供了模型-视图-控制器(MVC)架构,数据持久化,以及依赖注入和事务管理等功能,大大简化了企业级应用的开发工作...

    Spring提供的CharacterEncoding和OpenSessionInView功能

    在处理Web应用时,Spring提供了一些关键特性,如`CharacterEncodingFilter`和`OpenSessionInViewFilter`,它们对于解决特定问题至关重要。 首先,让我们深入了解一下`CharacterEncodingFilter`。在Web应用中,字符...

    Java servlet过滤器配置详解

    这些过滤器各有用途,例如`TilesFilter`用于处理Struts2的Tiles视图定义,`OpenSessionInViewFilter`则在请求结束时确保数据库会话关闭,防止长时间打开的连接导致资源浪费。 在实际项目中,过滤器可以组合使用,...

    SSH1,JQuery的ajax返回json二维数组处理过程

    `web.xml`配置文件中的`OpenSessionInViewFilter`是为了在HTTP请求的生命周期内保持一个Hibernate的Session,这样可以在视图渲染过程中执行数据库操作,防止“Write operations are not allowed in read-only mode”...

    错误及解决方案.pdf

    知识点二:使用OpenSessionInViewFilter防止懒加载异常 OpenSessionInViewFilter是Spring提供的一个过滤器,它允许在每个HTTP请求开始时打开一个新的Hibernate会话,并且只有在请求结束时(比如在控制器处理完毕后)...

    spring框架登录初始化数据与struct2权限设置等相关知识

    - **线程绑定**:`OpenSessionInViewFilter`的主要作用是将`HibernateSession`绑定到当前请求的线程中。 - **事务管理**:当服务层使用`HibernateTransactionManager`或`JtaTransactionManager`进行事务管理时,该...

    SSH框架整合所需类class.txt

    - **应用场景**:在使用Spring MVC与Hibernate集成的应用中,为了确保在视图层渲染数据时不会因为Session关闭而导致的问题,需要配置`OpenSessionInViewFilter`。 ##### 4. `org.apache.struts2.dispatcher.ng....

    dwr+ssh项目

    在web.xml中,可以配置`OpenSessionInViewFilter`来解决懒加载问题,保持一个Session贯穿整个请求过程。 3. **Spring** - 提供依赖注入和管理服务,可以将Action和DAO注入到DWR的配置中。同时,Spring也负责配置...

    configuration

    &lt;filter-class&gt;org.springframework.orm.hibernate3.support.OpenSessionInViewFilter &lt;!--...--&gt; ``` 此过滤器保持一个打开的Hibernate Session直到视图渲染完成,确保了事务的一致性。 #### 6. Struts2过滤器 `...

    ssha 最新 最完整 配置信息

    &lt;filter-class&gt;org.springframework.orm.hibernate3.support.OpenSessionInViewFilter &lt;param-name&gt;sessionFactoryBeanName &lt;param-value&gt;sessionFactory &lt;filter-name&gt;openSessionInViewFilter ...

    hibernate面试题总结

    但这种方法可能导致过多的数据库连接,因此也有其他解决方案,如OpenSessionInViewFilter和OpenEntityManagerInView。 6. **Hibernate的核心类**: - **Configuration**:负责读取配置信息,创建SessionFactory。 ...

    JavaEE技术面试常见问题.doc

    7. **OpenSessionInViewFilter的使用** - 用于解决懒加载问题。 8. **Hibernate检索方式** - **HQL**:面向对象的查询语言。 - **Criteria**:灵活构建查询条件。 - **Native SQL**:直接使用SQL。 #### ...

Global site tag (gtag.js) - Google Analytics