首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

OpenSessionInView方式运用

2012-11-14 
OpenSessionInView模式运用想解决问题:spring中session管理opersession,避免页面中数据未输出完session就

OpenSessionInView模式运用
想解决问题:spring中session管理opersession,避免页面中数据未输出完session就被关闭了(session延迟加载)

转载:

Spring+Hibernate中OpenSessionInView模式运用配置OpenSessionInView模式也很简单,Spring提供了两种方式:

1、过滤流Filter



推荐用第二种方式

但尝试使用时发现,第一种方法看似简单,加入到代码中总是报错。

按上面所说方法,加在web.xml中后,在最上面加着。报错:java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered?

在网上搜索,提示:需要在web.xml中加入

<filter>            <filter-name>OpenSessionInViewFilter</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>     </filter>               <filter-mapping>            <filter-name>OpenSessionInViewFilter</filter-name>            <url-pattern>/*</url-pattern>        </filter-mapping>            <listener>         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>    </listener>struts-conf。xml中需注释内容:<!--<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">    <set-property property="contextConfigLocation"        value="/WEB-INF/applicationContext.xml"/>     </plug-in>         -->


热点排行