在ssh中出现attempt to associate a collection with two open sessions

来源:互联网 发布:twizzlers扭扭糖淘宝 编辑:程序博客网 时间:2024/04/30 09:44

 假若你的web.xml中配置了hibernate的OpenSessionInViewFilter的filter那么去掉后,在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> 

原创粉丝点击