当需要在系统中配置这些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配置文件中。
本文讲解了在Spring框架中如何正确配置具有特定作用域的Bean,特别是在web.xml中配置RequestContextListener的重要性及其对DispatcherServlet的影响。
6563

被折叠的 条评论
为什么被折叠?



