`
xjg396
  • 浏览: 46577 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

OpenSessionInViewFilter的两个异常:Illegal attempt to associate a collection with two

阅读更多
最近被hibernate 的懒加载给整郁闷了.当页面调用时,报session 已关闭,后来在web.xml中加上openSessionInView. 问题解决了,但是随之而来又出现了一个问题,在根据ID删除一个对象时,报有2个session. 网上找了些资料,把在web.xml中配置的openSessionInView 移到spring的配置文件中.
<bean name="openSessionInViewInterceptor" class="org.springframework.orm.hibernate3.support.OpenSessionInViewInterceptor">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
<property name="flushMode" value="1" />
<property name="singleSession" value="false" />
</bean>
加了一行 <property name="flushMode" value="1" />. 问题解决了.
  但是又出现了之前的 hibernate 延迟加载的错误 failed to lazily initialize a collection of role . 就这样问题反反复复,最终还是有我遭遇相同的兄弟..

    使用 Spring 整合 Hibernate, 在懒加载的情况下, 有时候需要在 JSP/View 层显示数据, 这时候就要用到Spring内置的: OpenSessionInViewFilter, 一般来说配置如下(web.xml):

<filter>
<filter-name>hibernateFilter</filter-name>
<filter-class>
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    </filter-class>
<init-param>
<param-name>singleSession</param-name>
<param-value>true</param-value>
</init-param>
<!-- 和 spring 中的sesssionfactory ID 一致 -->
<init-param>
<param-name>sessionFactoryBeanName</param-name>
<param-value>sessionFactory</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>hibernateFilter</filter-name>
<url-pattern>*.do</url-pattern>
<!-- *.jsp, *.do-->
</filter-mapping>

不过, 这时候又会导致更新数据时抛出如下异常:
Write operations are not allowed in read-only mode (FlushMode.NEVER/MANUAL): Turn your Session into FlushMode.COMMIT/AUTO or remove ‘readOnly’ marker from transaction definition.
这时候再去网上找解决方案, 会有人说: 把参数 singleSession改为false, 就行了. 不过, 改完后, 估计不久就会遇到另一个郁闷的异常:

org.hibernate.HibernateException: Illegal attempt to associate a collection with two open sessions

这下完了, 两个方案都不行, 到底怎么办? 还好, 在http://xuliangyong.javaeye.com/blog/144818的主页上, 给了一个方案, 就是改写 OpenSessionInViewFilter 的代码, 非常感谢, 下面给出的就是最终方案:

web.xml

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

< filter-class > org.springframework.orm.hibernate3.support.OurOpenSessionInViewFilter </filter-class>

OurOpenSessionInViewFilter.java 代码:

package org.springframework.orm.hibernate3.support;

import org.hibernate.*;

/** * 单session模式下, 默认会发生无法提交的错误: * Write operations are not allowed in read-only mode (FlushMode.NEVER/MANUAL): Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly' marker from transaction definition. * 需要设置FlushMode并刷新session. * 参考: http://xuliangyong.javaeye.com/blog/144818 * @author 刘长炯 */publicclass OurOpenSessionInViewFilter extends OpenSessionInViewFilter {

    public OurOpenSessionInViewFilter() {
        super.setFlushMode(FlushMode.AUTO);
    }

    protectedvoid closeSession(Session session, SessionFactory sessionFactory) {
        session.flush();

        try {
            session.getTransaction().commit();
        } catch (HibernateException e) {
            // TODO Auto-generated catch block//e.printStackTrace();
        }

        super.closeSession(session, sessionFactory);
    }
}
如果各位有更好的解决方案, 欢迎讨论哦!!!

题外话:

感觉 Spring + Hibernate 的健壮性还是不够啊! 容易抛异常, 这是事实, 也许这是开源软件的通病吧.

转自: http://www.beansoft.biz/?p=1806
分享到:
评论

相关推荐

    关于OpenSessionInViewFilter的学习

    OpenSessionInViewFilter是Spring框架中一个非常重要的组件,主要用于解决数据访问层(DAO)与视图层(View)之间的事务管理问题。在Web应用中,由于HTTP请求的无状态性,一次请求通常由多个Servlet过滤器、控制器和...

    OpenSessionInViewFilter

    OpenSessionInViewFilter个人学习总结

    懒加载异常解决.docx

    ### 懒加载异常解决知识点 #### 一、懒加载技术概述 懒加载(Lazy Loading)是一种按需加载策略,在程序设计中广泛应用于减少内存占用和提高系统性能。在Java开发中,尤其针对数据库操作频繁的应用场景,如...

    Spring hibernate opensessioninview

    在Java Web开发中,Spring与Hibernate作为两个重要的框架,经常被一起使用来实现业务逻辑与数据持久化的处理。而在使用这两个框架时,为了更好地管理数据库会话(Session)生命周期,通常会采用`OpenSessionInView`...

    使用Spring引起的错误

    当使用Open Session In View模式时,如果Session的Flush Mode被设置为NEVER,并且尝试执行写操作(如更新或删除),就会触发“Write operations are not allowed in read-only mode (FlushMode.NEVER)”这个异常。...

    hibernate 中 fetch=FetchType.LAZY 懒加载失败处理方法

    为了解决这个问题,我们可以使用 Spring 提供的一个支持类OpenSessionInViewFilter,这个类可以在发起一个页面请求时打开 Hibernate 的 Session,并保持这个 Session 的生命周期,直到这个请求结束。这样可以确保 ...

    S2SH的配置

    - **`struts.convention.package.locators`** 和 **`struts.convention.package.locators.basePackage`**:这两个配置项用于指定Action类的搜索路径,通过这些配置,Struts2可以自动扫描指定路径下的Action类并注册...

    spring学习笔记

    - **问题**:确保在请求处理过程中,同一个线程内有一个且只有一个 Hibernate Session 实例。 - **解决方案**:使用 OpenSessionInViewFilter 过滤器,在请求开始时打开 Session,并在请求结束时关闭 Session。 2....

    过滤器对于session周期的控制

    综上所述,`OpenSessionInViewFilter`是Spring提供的一个强大工具,用于简化Hibernate中Session的生命周期管理。通过正确配置此过滤器,可以在不影响应用程序性能的前提下,有效地支持Lazy Loading机制。这对于提高...

    Spring提供的CharacterEncoding和OpenSessionInView功能

    总的来说,`CharacterEncodingFilter`和`OpenSessionInViewFilter`是Spring框架中用于优化Web应用处理的两个关键组件,它们分别解决了字符编码和数据库会话的问题,提高了应用的稳定性和用户体验。同时,了解SSH框架...

    Open_Session_In_View详解.doc

    如果不这样做,将会引发`Hibernate`异常:`session already closed Exception`。这不仅增加了代码的复杂性,也降低了程序的可维护性和可读性。 为了解决这一问题,Spring框架提供了`Open Session In View`机制,这...

    ssh配置总结

    结果页面有两种配置方式,一种是重定向到另一个Action,另一种是直接转发到JSP页面。 ```xml &lt;result&gt;add.action &lt;result&gt;/emp/add_suc.jsp ``` #### web.xml文件配置解析 1. **Spring监听器配置**:`...

    hibernate面试题总结

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

    错误及解决方案.pdf

    内容中多次提及了“lazy initialization”异常,这通常发生在尝试访问一个被延迟加载的集合时,但是会话(Session)已经关闭或不存在。这表明开发者需要理解对象的生命周期管理、延迟加载(懒加载)机制以及...

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

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

    搭建SSH框架步骤

    - 添加OpenSessionInViewFilter,解决在视图层处理时可能出现的懒加载异常。 10. **编写Action类**: - 创建Action类,它们通常对应于特定的业务操作,如增、删、改、查。 11. **更新struts.xml**: - 在`...

    spring框架中常用的配置

    这确保了在请求处理过程中保持一个持久的会话,从而解决了懒加载时可能发生的异常。 - **配置示例**: ```xml &lt;filter-name&gt;openSessionInViewFilter &lt;filter-class&gt;org.springframework.orm.hibernate5....

    jar包(struts2.0.8+spring2.0+hibernate3.2)

    Struts2、Spring和Hibernate是Java开发中三个非常重要的框架,它们共同构成了经典的MVC(Model-View-Controller)架构的实现。这个压缩包“struts2.0.8+spring2.0+hibernate3.2”包含了这三个框架的特定版本,这将...

    spring监听器

    1. **OpenSessionInViewFilter**:这是一个由Spring提供的过滤器,用于解决在Web应用程序中使用Hibernate时常见的问题——事务管理。当用户发起一个HTTP请求时,OpenSessionInViewFilter会在请求开始时打开一个新的...

Global site tag (gtag.js) - Google Analytics