`
fourfireliu
  • 浏览: 94977 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Spring 配置scope为request,session,application的bean需要注意的小tip

 
阅读更多

当需要在系统中配置这些scope的Bean时,需要在web.xml中多配置

<listener>
        <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>

 

由于dispatcherservlet对应的applicationContext加载的是servlet内部的init-param的ContextConfigLocation中的spring配置文件,而ContextLoaderListener,RequestContextListener这些加载的是外部context-param的ContextConfigLocation的spring配置文件,因此,如果把这些特殊scope bean放在servlet spring配置文件中,启动web项目就会报错 因为dispatcherServlet不能有效的处理它们,这些bean的加载 需要放在外部web容器的spring配置文件中。

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics