欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

OpenSessionInViewFilter

程序员文章站 2022-03-08 08:17:49
...
[color=green][/color]
在保存实体对象的时候出现一下错误
错误提示: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的缘故
OpenSessionInViewFilter在web.xml中的配置如下:
<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>/*</url-pattern>
  </filter-mapping>

首先说明OpenSessionInViewFilter的作用是:允许在每次的整个request的过程中使用同一个hibernate session,可以在这个request任何时期延迟加载数据(hibernate延迟加载)。即实现了spring对session的管理,又实现了hibernate的延迟加载,一句两得的事情,多好OpenSessionInViewFilter 
            
    
    博客分类: struts1、2spring、hibernate、ibatics HibernateSpring配置管理ORMWeb 
但是OpenSessionInViewFilter默认是不会对session 进行flush的,并且flush mode 是 never
代码:
protected Session getSession(SessionFactory sessionFactory) 
                  throws DataAccessResourceFailureException {
       Session session = SessionFactoryUtils.getSession  (sessionFactory, true);
       session.setFlushMode(FlushMode.NEVER);
       return session;
    }
看getSession的方式就知道,把flush mode 设为FlushMode.NEVER,这样就算是commit的时候也不会session flush, 如果想在完成request过程中更新数据的话, 那就需要先把flush model设为FlushMode.AUTO,再在更新完数据后flush.
解决方法:使用spring的事物管理机制(spring2.0及以后版本)
<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
    <ref local="sessionFactory"/>
         </property>
</bean>
     <!-- 配置事务特性 -->      
<tx:advice id="txAdvice" transaction-manager="transactionManager">
    <tx:attributes>
    <tx:method name="add*" propagation="REQUIRED"/>
    <tx:method name="del*" propagation="REQUIRED"/>
    <tx:method name="update*" propagation="REQUIRED"/>
    <tx:method name="*" read-only="true"/>
    </tx:attributes>
</tx:advice>
   
    <!-- 配置那些类的方法进行事务管理 -->
<aop:config>
    <aop:pointcut id="allManagerMethod"
         expression="execution (* com.cyf.oa.managers.*.*(..))"/>
    <aop:advisor advice-ref="txAdvice"
         pointcut-ref="allManagerMethod"/>
</aop:config>

还有一点就是方法名的问题,方法名字一定要与事物配置声明的方法名对应,一定要以add,del或者update开头,要不然这些配置对你那方法是不起作用的。、
这些都是spring,hibernate对我们的方法进行了控制,在调用某种方法前,进行了验证,过滤。帮助我们管理事物。