org.springframework.web.struts.ContextLoaderPlugIn 和 org.springframework.web.con

    技术2022-05-20  67

    org.springframework.web.struts.ContextLoaderPlugIn 和 org.springframework.web.context.ContextLoaderListener是视图层加载sping的两种方式。那么这两种方式谁的优先级高,从容器加载程度上看,是org.springframework.web.context.ContextLoaderListener那么中方式都被配置在项目中,会使用哪个一个呢?答案是org.springframework.web.struts.ContextLoaderPlugIn当然如果你不需要在视图层采用lazy而配置org.springframework.orm.hibernate3.support.OpenSessionInViewFilter那么你可以两个都配置。但如果你需要使用,那就会。我们知道,容器初始化Spring配置文件时,使用getServletContext().setAttribute方法key,value全局保存。那么当你使用OpenSessionInViewFilter时,他取得的是哪个呢?其实OpenSessionInViewFilter是sping的Filter,它采用WebApplicationContextUtils的方式获得WebApplicationContext,但它并不能加载由struts-config.xml文件ContextLoaderPlugIn提供初始化的上下文。如果你需要在视图层加载一对对....等关联对象。那么就会有could not initialize proxy - the owning Session was closed错误。到此处我们看到,sping在应用程序和OpenSessionInViewFilter之间,加载了不同的上下文。我们知道OpenSessionInViewFilter下无法获得ContextLoaderPlugIn加载的上下文,那我们可以推算,应用程序应该加载了ContextLoaderPlugIn上下文,而OpenSessionInViewFilter却加载了ContextLoaderListener的上下文。才导致视图层session有关闭的问题。尝试解决此问题,若你配置了两个,则删除ContextLoaderPlugIn的加载方式。若你只配置了ContextLoaderPlugIn的加载方式,则改成ContextLoaderListener加载方式。


    最新回复(0)