Tomcat或Jetty作为Servlet容器会为每一个Web应用构建一个ServletContext用于存放所有的Servlet, Filter, Listener。Spring MVC 启动的时候主要涉及到DispatcherServlet 与 ContextLoaderListener。
关于ContextLoaderListener和DispatcherServlet
ContextLoaderListener
- ContextLoaderListener 作为一个Listener会首先启动,创建一个WebApplicationContext用于加载除Controller等Web组件以外的所有bean,这个ApplicationContext作为根容器存在,对于整个Web应用来说,只能存在一个,也就是父容器,会被所有子容器共享,子容器可以访问父容器里的bean,反过来则不行。
-
A. XML配置下会直接创建ContextLoaderListener,然后在contextInitialized方法中初始化WebApplicationContext。
B. 如果使用的是AnnotationConfig,则通过AnnotationConfigWebApplicationContext获取一个WebApplicationContext之后传给ContextLoadListener。
之后再contextInitialized方法中调用父类ContextLoader的initWebApplicationContext进行初始化。public class ContextLoader { /** * The root WebApplicationContext instance that this loader manages. */ private WebApplicationContext context; public WebApplicationContext initWebApplicationContext(ServletContext servletContext) { this.context = createWebApplicationContext(servletContext); servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context); return this.context; } }
可以看到ContextLoader作为ContextLoaderListener的父类在创建了WebApplicationContext之后(针对的是XML配置,使用contextConfigLocation参数指定的配置文件),会通过WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE这个属性将ApplicationContext保存到ServletContext之中,而ContextLoader在创建WebApplicationContext之前也会检查这个属性是否有关联的对象,保证了整个Servletcontext之中只会存在一个根WebApplicationContext。
DispatcherServlet
- 在加载了Listener,Filter之后,DispatcherServlet作为ServletContext之中很可能唯一的一个Servlet被初始化,作为整个Web应用的Front Controller进行请求转发。
- A. XML配置,生成默认的DispatcherServlet,init时通过init-param中的contextConfigLocation指定的配置文件创建WebApplicationContext。
B.AnnotationConfig,通过AnnotationConfigWebApplicationContext读取JavaConfig后生成WebApplicationContext,传递给DispatcherServlet进行构造。 - DispatcherServlet构造完成之后,调用init方法进行初始化,将DispatcherServlet关联的WebApplicationContext的父容器设为之前ContextLoaderListener创建的WebApplicationContext。
- DispatcherServlet关联的WebApplicationContext会在请求到来的时候被设为request的attribute暴露给handlers和之后的web组件。
由此可知,对于一个使用SpringMVC构建的Web应用来说,ContextLoaderListener虽然只能加载一个根容器,但其实是可选的,而DispatcherServlet作为请求转发处理返回结果的核心是比不可少的,而且可以不唯一。
但在Web应用中还是建议使用这种分层的容器结构,更为清晰,也便于之后的扩展。
web.xml与Servlet3.0
传统的web.xml配置适用于Servlet3规范之前的Servlet容器,而Servlet3之后的Servlet容器可以使用注解或是Java代码的方式进行配置。
Servlet3.0环境中,容器会在classpath下寻找ServletContainerInitializer接口的实现类,用于配置Servlet容器。Spring的SpringServletContainerInitializer类就实现了这个接口,并会寻找WebApplicationInitializer接口的实现类完成上面两个组件的加载。
public interface WebApplicationInitializer {
/**
* Configure the given {@link ServletContext} with any servlets, filters, listeners
* context-params and attributes necessary for initializing this web application. See
* examples {@linkplain WebApplicationInitializer above}.
* @param servletContext the {@code ServletContext} to initialize
* @throws ServletException if any call against the given {@code ServletContext}
* throws a {@code ServletException}
*/
void onStartup(ServletContext servletContext) throws ServletException;
}
这个接口的两个主要实现基类为AbstractContextLoaderInitializer与AbstractDispatcherServletInitializer,分别负责将ContextLoaderListener与DispatcherServlet加载到ServletContext之中,但是这两个类分别获取WebApplicationContext的函数并没有实现,如果如需要,你可以通过自己实现通过XML获取WebApplicationContext,而Spring提供了一个AbstractAnnotationConfigDispatcherServletInitializer供你来继承,如名可知,是使用JavaConfig来加载WebApplicationContext的。
当然你也可以自己实现WebApplicationInitializer手动将Servlet和Listener这些加载如ServletContext。
强调:Servlet3.0容器会自己检查classpath下实现了ServletContainerInitializer的类,使用这个接口的onStartup函数进行ServletContext的初始化。如果不适用这个,那么就用传统的web.xml进行ContextLoaderListener与DispatcherServlet的装配。
强调
对于DispatcherServlet与ContextLoaderListener的配置分为web.xml与Servlet容器发现两种,而对于这两个组件的WebApplicationContext的配置也分为XML方式和JavaConfig方式。
-
web.xml + application.xml =
<listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:config/spring-context.xml</param-value> </context-param> //<br/> <servlet> <servlet-name>ebook-manage</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:config/spring-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> <async-supported>true</async-supported> </servlet> <servlet-mapping> <servlet-name>ebook-manage</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
-
web.xml + JavaConfig =
<context-param> <param-name>contextClass</param-name> <param-value> org.springframework.web.context.support. ➥ AnnotationConfigWebApplicationContext </param-value> </context-param> <context-param> <param-name>contextConfigLocation</param-name> <param-value>com.habuma.spitter.config.RootConfig</param-value> </context-param> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <servlet> <servlet-name>appServlet</servlet-name> <servlet-class> org.springframework.web.servlet.DispatcherServlet </servlet-class> <init-param> <param-name>contextClass</param-name> <param-value> org.springframework.web.context.support. ➥ AnnotationConfigWebApplicationContext </param-value> </init-param> <init-param> <param-name>contextConfigLocation</param-name> <param-value> com.habuma.spitter.config.WebConfigConfig </param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>appServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
- ServletContainerInitializer(WebApplicationInitializer) + JavaConfig =
public class SpittrWebAppInitializer extends AbstractAnnotationConfigDispatcherServletInitializer { @Override protected String[] getServletMappings() { return new String[] { "/" }; } @Override protected Class<?>[] getRootConfigClasses() { return new Class<?>[] { RootConfig.class }; } @Override protected Class<?>[] getServletConfigClasses() { return new Class<?>[] { WebConfig.class }; } }
- ServletContainerInitializer(WebApplicationInitializer) + application.xml =
需要继承AbstractDispatcherServletInitializer然后自己实现通过application.xml加载ApplicationContext的函数。
http://www.jianshu.com/p/9d77e49852c6
相关推荐
- web.xml:配置DispatcherServlet和ContextLoaderListener,分别初始化Spring MVC和Spring应用上下文。 - spring-servlet.xml:定义Spring MVC的bean,如HandlerMapping、HandlerAdapter、ViewResolver等。 - ...
1. 配置Spring MVC的DispatcherServlet,定义前端控制器。 2. 配置Spring的ContextLoaderListener,初始化Spring的ApplicationContext。 3. 配置Spring MVC的视图解析器,如InternalResourceViewResolver,处理请求...
DispatcherServlet 是 Spring MVC 框架的核心组件,它负责转发每一个 Request 请求给相应的 Handler,Handler 处理以后再返回相应的视图(View)和模型(Model)。DispatcherServlet 是继承自 HttpServlet 的,既然 ...
本文主要介绍使用注解方式配置的spring mvc,之前写的spring3.0 mvc和rest小例子没有介绍到数据层的内容,现在这一篇补上。下面开始贴代码。 文中用的框架版本:spring 3,hibernate 3,没有的,自己上网下。 先说...
2. **DispatcherServlet**:作为Spring MVC的前端控制器,它负责接收请求、调度请求到相应的处理器,并最终将结果返回给客户端。 3. **HandlerMapping**与**HandlerAdapter**:这两个组件负责映射HTTP请求到对应的...
SPRING MVC 是一个基于 DispatcherServlet 的 MVC 框架,每一个请求最先访问的都是 DispatcherServlet,DispatcherServlet 负责转发每一个 Request 请求给相应的 Handler,Handler 处理以后再返回相应的视图(View)和...
- `web.xml`:配置DispatcherServlet和ContextLoaderListener,前者处理HTTP请求,后者初始化Spring的ApplicationContext。 - `spring-mvc.xml`:配置ViewResolver,比如InternalResourceViewResolver,用于解析...
Spring MVC 框架搭建是 Java Web 开发中的一种常见架构模式,它基于 Model-View-Controller(MVC)模式,使用注解方式来处理请求和响应。下面将详细介绍 Spring MVC 框架的搭建过程和与 Hibernate 的整合实例。 一...
在 Spring MVC 中, jsp 文件中尽量不要有 Java 代码, 只有 HTML 代码和"迭代(forEach)"与"判断(if)"两个jstl标签. jsp 文件只作为渲染(或称为视图 View)模板使用. 好了, 我们开始吧. 首先我们需要一个放在 WEB-INF...
在`web.xml`中,我们需要定义Spring MVC的DispatcherServlet,并设置对应的ContextLoaderListener,以便加载Spring的配置文件: ```xml <web-app> <context-param> <param-name>contextConfigLocation</param-...
- 对于Spring MVC的初始化,通常还需要一个`ContextLoaderListener`来加载Spring的ApplicationContext,以及一个`DispatcherServlet`来处理请求。 - 在`DispatcherServlet`配置中,可以指定Spring MVC的配置文件,...
- **web.xml配置**:配置Spring MVC DispatcherServlet和ContextLoaderListener。 - **Spring配置**:创建bean配置文件,定义控制器、服务、数据访问对象等。 - **注解驱动开发**:使用@Controller、@Service、@...
- 配置DispatcherServlet:DispatcherServlet是Spring MVC的核心,需要在web.xml中指定Servlet名称和类路径,并通过<url-pattern>指定需要拦截的请求路径。 - 配置dispatcher-servlet.xml:这是一个Spring配置文件...
该文件定义了Spring MVC的核心组件,包括监听器和DispatcherServlet的配置。 ```xml <web-app> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> <servlet-name>...
在 Spring 3.2.4 版本中,配置主要通过 XML 文件完成,包括 `web.xml` 用于配置 DispatcherServlet 和 ContextLoaderListener,以及 Spring MVC 的 `servlet-context.xml` 配置处理器映射、视图解析等。 **5. 注解...
2. **配置web.xml**:这是Servlet容器(如Tomcat)的部署描述符,用于设置Spring MVC的DispatcherServlet和ContextLoaderListener。例如: ```xml <servlet-name>dispatcher</servlet-name> <servlet-class>org...
- 在 `web.xml` 中配置 DispatcherServlet 和 ContextLoaderListener。 - 创建 `servlet-context.xml` 配置 Spring MVC,包括组件扫描、视图解析器、处理器映射器等。 - 使用 `@Controller`、`@RequestMapping` ...
在Java Web开发中,DispatcherServlet和ContextLoaderListener都是Spring框架中的关键组件,它们各自承担着不同的职责,共同构建了一个高效、灵活的Web应用程序。这里我们将深入探讨这两个组件的区别及其工作原理。 ...
同时,在web.xml中配置Spring MVC的DispatcherServlet和ContextLoaderListener。 4. **编写业务逻辑**:使用Spring MVC的注解驱动方式,如@Controller、@RequestMapping等,定义控制器并实现业务逻辑。同时,利用...
- **web.xml**:传统的Spring MVC配置,通常会配置DispatcherServlet和ContextLoaderListener。 - **Spring MVC配置文件**:使用`@Configuration`和`@EnableWebMvc`注解,定义bean、拦截器、视图解析器等。 - **...