OPEN SESSION IN VIEW配置

使用Hibernate/Spring/Struts架構,配置使用Spring的OpenSessionInView Filter,可是發現不生效,lazy的集合屬性在頁面訪問的時候仍然報session已經關閉的錯誤。我和他一塊兒檢查了全部的配置和相關的代碼,可是沒有發現任何問題。通過調試發現,應用程序使用的Session和OpenSessionInView Filter打開的Session不是同一個,因此OpenSessionInView模式沒有生效,可是爲何他們不使用同一個Session呢? 
檢查了一遍Spring的相關源代碼,發現了問題的根源: 
一般在Web應用中初始化Spring的配置,咱們會在web.xml裏面配置一個Listener,即:web

Xml代碼
<listener>
  <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class>
</listener>

若是使用Struts,那麼須要在Struts的配置文件struts-config.xml裏面配置一個Spring的plugin:ContextLoaderPlugIn。 

實際上ContextLoaderListener和ContextLoaderPlugIn的功能是重疊的,他們都是進行Spring配置的初始化工做的。所以,若是你不打算使用OpenSessionInView,那麼你並不須要在web.xml裏面配置ContextLoaderListener。 

好了,可是你如今既須要Struts集成Spring,又須要OpenSessionInView模式,問題就來了! 

因爲ContextLoaderListener和ContextLoaderPlugIn功能重疊,都是初始化Spring,你不該該進行兩次初始化,因此你不該該同時使用這二者,只能選擇一個,由於你如今須要集成Struts,因此你只能使用ContextLoaderPlugIn。 
可是使人困惑的是,ContextLoaderListener和ContextLoaderPlugIn有一個很是矛盾的地方! 
ContextLoaderPlugIn保存spring配置的名字叫作attrName; 
,ContextLoaderListener保存spring配置的名字叫作WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE; 
而OpenSessionInView是按照WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE這個名字去取得spring配置的! 
而你的應用程序倒是按照attrName去取得spring的配置的! 
因此,OpenSessionInView模式失效!
spring

 操做步鄹以下:
1.struts-config.xmlsession

刪掉加載插件
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
 <set-property property="contextConfigLocation" value="classpath:applicationContext.xml"/>
</plug-in>
2。web.xml
在web.xml文件中新增以下配置架構

注意listener必定要寫在最前面 否則、、、、、app

 <listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>
<filter>
  <filter-name>opensession</filter-name>
  <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
 </filter>
 <filter-mapping>
  <filter-name>opensession</filter-name>
  <url-pattern>*.do</url-pattern>
 </filter-mapping>
 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:spring.xml</param-value>
 </context-param>
配好後應該就Ok了。。。url

相關文章
相關標籤/搜索