Spring中的DispatcherServlet和ContextLoaderListener

前端之家收集整理的这篇文章主要介绍了Spring中的DispatcherServlet和ContextLoaderListener前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Spring框架中的DispatcherServlet和ContextLoaderListener有什么区别?当我们使用spring框架时,我们是否需要在web.xml中配置它们?

最佳答案
根WebApplicationContext是在应用程序中共享的Spring Application Context.

A DispatcherServlet instance actually has its own
WebApplicationContext.

可以在应用程序中拥有多个DispatcherServlet实例,每个实例都有自己的WebApplicationContext.

The root WebApplicationContext is shared across
the application,so if you have a root WebApplicationContext and
multiple DispatcherServlets,the DispatcherServlets will share the
root WebApplicationContext.

但是,对于一个简单的Spring MVC应用程序,甚至可以在不需要根WebApplicationContext的情况下使用. DispatcherServlet仍然有自己的WebApplicationContext,但实际上并不需要父根WebApplicationContext.

那么,哪些bean应该放在根Web应用程序上下文中,哪些bean应该放在DispatcherServlet的Web应用程序上下文中?
好吧,服务和DAO等通用bean在根Web应用程序上下文中出现,而DispatcherServlet的Web应用程序上下文中包含更多特定于Web的bean,如控制器.

原文链接:https://www.f2er.com/spring/431921.html

猜你在找的Spring相关文章