SpringMVC的DispatchServlet源码解析




最近在学习Spring MVC,顺便就把它记录下来,一方面记录学习路程,一方面加深印象。


DispatcherServlet作为SpringMVC的核心之中的核心类,重要性五颗星。SpringMVC所有的核心类和接口,都密集地出现在DispatcherServlet的源码中,SpringMVC源码剖析,很大程度上可以说也是在剖析DispatcherServlet这一个类。

本文将分析SpringMVC的核心分发器DispatcherServlet的初始化过程以及处理请求的过程,


在分析DispatcherServlet之前,我们先看下DispatcherServlet的继承关系。

       

       

    根据类图可以知道DispatchServlet实际上是一个Servlet。


package org.springframework.web.servlet;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.springframework.beans.factory.BeanFactoryUtils;
import org.springframework.beans.factory.BeanInitializationException;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.i18n.LocaleContext;
import org.springframework.core.annotation.AnnotationAwareOrderComparator;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.support.PropertiesLoaderUtils;
import org.springframework.http.server.ServletServerHttpRequest;
import org.springframework.ui.context.ThemeSource;
import org.springframework.util.ClassUtils;
import org.springframework.util.StringUtils;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.request.ServletWebRequest;
import org.springframework.web.context.request.async.WebAsyncManager;
import org.springframework.web.context.request.async.WebAsyncUtils;
import org.springframework.web.multipart.MultipartException;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import org.springframework.web.multipart.MultipartResolver;
import org.springframework.web.util.NestedServletException;
import org.springframework.web.util.WebUtils;

/**
 * @see org.springframework.web.HttpRequestHandler
 * @see org.springframework.web.servlet.mvc.Controller
 * @see org.springframework.web.context.ContextLoaderListener

*DispatcherServlet类继承FrameworkServlet,主要负责Web的请求流程控制
 */
@SuppressWarnings("serial")
public class DispatcherServlet extends FrameworkServlet {

 /** multipartresolver对象 ,用于文件上传解析 */
 public static final String MULTIPART_RESOLVER_BEAN_NAME = "multipartResolver";

 /**  LocaleResolver对象,用于区域解析 */
 public static final String LOCALE_RESOLVER_BEAN_NAME = "localeResolver";

 /** ThemeResolver对象,用于主题解析 */
 public static final String THEME_RESOLVER_BEAN_NAME = "themeResolver";

 /** HandlerMapping对象,处理器映射*/
 public static final String HANDLER_MAPPING_BEAN_NAME = "handlerMapping";

 /**HandlerAdapter对象,处理器适配器 */
 public static final String HANDLER_ADAPTER_BEAN_NAME = "handlerAdapter";

 /**HandlerExceptionResolver对象,用于异常解析 */
 public static final String HANDLER_EXCEPTION_RESOLVER_BEAN_NAME = "handlerExceptionResolver";

 /**RequestToViewNameTranslator对象,获取逻辑视图名称*/
 public static final String REQUEST_TO_VIEW_NAME_TRANSLATOR_BEAN_NAME = "viewNameTranslator";

 /**ViewResolver对象,用于视图解析viewNameTranslator*/
 public static final String VIEW_RESOLVER_BEAN_NAME = "viewResolver";

 /**FlashMapManager对象,FLASH属性,用于解决多次提交问题*/
 public static final String FLASH_MAP_MANAGER_BEAN_NAME = "flashMapManager";

 /**request请求属性,保存当前application上下文内容信息 */
 public static final String WEB_APPLICATION_CONTEXT_ATTRIBUTE = DispatcherServlet.class.getName() + ".CONTEXT";

 /**request请求属性,保存当前localeresolver的信息*/
 public static final String LOCALE_RESOLVER_ATTRIBUTE = DispatcherServlet.class.getName() + ".LOCALE_RESOLVER";

 /**request请求属性,保存当前themeresolver的信息*/
 public static final String THEME_RESOLVER_ATTRIBUTE = DispatcherServlet.class.getName() + ".THEME_RESOLVER";

  /**request请求属性,保存当前themesource的信息*/
 public static final String THEME_SOURCE_ATTRIBUTE = DispatcherServlet.class.getName() + ".THEME_SOURCE";

  /**request请求属性,保存flash入力 属性的信息*/
 public static final String INPUT_FLASH_MAP_ATTRIBUTE = DispatcherServlet.class.getName() + ".INPUT_FLASH_MAP";

 /**request请求属性,保存flash出力 属性的信息*/
 public static final String OUTPUT_FLASH_MAP_ATTRIBUTE = DispatcherServlet.class.getName() + ".OUTPUT_FLASH_MAP";

 /**request请求属性,保存flashMapManager属性的信息*/
 public static final String FLASH_MAP_MANAGER_ATTRIBUTE = DispatcherServlet.class.getName() + ".FLASH_MAP_MANAGER";

 /**request请求属性,获取异常解析器的信息*/
 public static final String EXCEPTION_ATTRIBUTE = DispatcherServlet.class.getName() + ".EXCEPTION";

 /** 当请求没有找到映射处理程序时使用的日志类别。*/
 public static final String PAGE_NOT_FOUND_LOG_CATEGORY = "org.springframework.web.servlet.PageNotFound";

 /**DispatcherServlet的类路径资源的默认策略名称*/
 private static final String DEFAULT_STRATEGIES_PATH = "DispatcherServlet.properties";


 /** 没有找到映射处理请求时的LOG记录器 */
 protected static final Log pageNotFoundLogger = LogFactory.getLog(PAGE_NOT_FOUND_LOG_CATEGORY);

 private static final Properties defaultStrategies;

 static {
  // 从属性文件加载默认策略实现。
  try {
   ClassPathResource resource = new ClassPathResource(DEFAULT_STRATEGIES_PATH, DispatcherServlet.class);
   defaultStrategies = PropertiesLoaderUtils.loadProperties(resource);
  }
  catch (IOException ex) {
   throw new IllegalStateException("Could not load 'DispatcherServlet.properties': " + ex.getMessage());
  }
 }

 /** 检测 所有的HandlerMappings or just expect "handlerMapping" bean? */
 private boolean detectAllHandlerMappings = true;

 /** 检测 所有的HandlerAdapters or just expect "handlerAdapter" bean? */
 private boolean detectAllHandlerAdapters = true;

 /** 检测 所有的HandlerExceptionResolvers or just expect "handlerExceptionResolver" bean? */
 private boolean detectAllHandlerExceptionResolvers = true;

 /** 检测 所有的ViewResolvers or just expect "viewResolver" bean? */
 private boolean detectAllViewResolvers = true;

 /** Throw a NoHandlerFoundException if no Handler was found to process this request? **/
 private boolean throwExceptionIfNoHandlerFound = false;

 /** Perform cleanup of request attributes after include request? */
 private boolean cleanupAfterInclude = true;

 /** 定义MultipartResolver对象*/
 private MultipartResolver multipartResolver;

 /** 定义LocaleResolver对象 */
 private LocaleResolver localeResolver;

 /**定义主题解析对象*/
 private ThemeResolver themeResolver;

 /**定义映射器的集合list*/
 private List<HandlerMapping> handlerMappings;

 /**定义适配器的集合list*/
 private List<HandlerAdapter> handlerAdapters;

 /** 定义HandlerExceptionResolvers对象的集合*/
 private List<HandlerExceptionResolver> handlerExceptionResolvers;

 /** 定义viewNameTranslator对象*/
 private RequestToViewNameTranslator viewNameTranslator;

 /** 定义FlashMapManager属性*/
 private FlashMapManager flashMapManager;

 /** 定义多种视图解析器的list集合*/
 private List<ViewResolver> viewResolvers;


 /**
  * 创建默认无参的构造函数
  */
 public DispatcherServlet() {
  super();
  setDispatchOptionsRequest(true);
 }

 /**
  * 创建一个指定application上下文的有参的构造函数。
  */
 public DispatcherServlet(WebApplicationContext webApplicationContext) {
  super(webApplicationContext);
  setDispatchOptionsRequest(true);
 }


 /**
* 设置在这个Servlet上下文中是否使用所有的HandlerMapping beans 
  */
 public void setDetectAllHandlerMappings(boolean detectAllHandlerMappings) {
  this.detectAllHandlerMappings = detectAllHandlerMappings;
 }

 /**
 * 设置在这个Servlet上下文中是否使用所有的HandlerAdapters beans 
  */
 public void setDetectAllHandlerAdapters(boolean detectAllHandlerAdapters) {
  this.detectAllHandlerAdapters = detectAllHandlerAdapters;
 }

 /**
* 设置在这个Servlet上下文中是否使用所有的HandlerExceptionResolver beans,否则只使用名为 "handlerExceptionResolver" 。
  */
 public void setDetectAllHandlerExceptionResolvers(boolean detectAllHandlerExceptionResolvers) {
  this.detectAllHandlerExceptionResolvers = detectAllHandlerExceptionResolvers;
 }

 /**
  * 设置在这个Servlet上下文中是否使用所有的视图解析器 beans,否则只使用名为 "viewResolver" 。
  */
 public void setDetectAllViewResolvers(boolean detectAllViewResolvers) {
  this.detectAllViewResolvers = detectAllViewResolvers;
 }

 /**
  * 设置当没有找到处理器处理当前请求时是否抛出一个NoHandlerFoundException异常。

*/
 public void setThrowExceptionIfNoHandlerFound(boolean throwExceptionIfNoHandlerFound) {
  this.throwExceptionIfNoHandlerFound = throwExceptionIfNoHandlerFound;
 }

 /**
  * 设置是否重置所有请求的原始状态的属性,否则只重置DispatcherServlet自己的请求属性,不会重置其它jsp或特殊模型的属性.
  */
 public void setCleanupAfterInclude(boolean cleanupAfterInclude) {
  this.cleanupAfterInclude = cleanupAfterInclude;
 }


 /**
  *DispatcherServlet覆写了FrameworkServlet中的onRefresh方法:
  */
 @Override
 protected void onRefresh(ApplicationContext context) {
  initStrategies(context);
 }

 /**
  * initStrategies方法内部会初始化各个策略接口的实现类,这里很重要。
  */
 protected void initStrategies(ApplicationContext context) {
  initMultipartResolver(context);
  initLocaleResolver(context);
  initThemeResolver(context);
  initHandlerMappings(context);
  initHandlerAdapters(context);
  initHandlerExceptionResolvers(context);
  initRequestToViewNameTranslator(context);
  initViewResolvers(context);
  initFlashMapManager(context);

 }

 /**
  *初始化 MultipartResolver方法,如果不设定就不提供多重处理。 
  */
 private void initMultipartResolver(ApplicationContext context) {
  try {
   this.multipartResolver = context.getBean(MULTIPART_RESOLVER_BEAN_NAME, MultipartResolver.class);
   if (logger.isDebugEnabled()) {
    logger.debug("Using MultipartResolver [" + this.multipartResolver + "]");
   }
  }
  catch (NoSuchBeanDefinitionException ex) {
   // Default is no multipart resolver.
   this.multipartResolver = null;
   if (logger.isDebugEnabled()) {
    logger.debug("Unable to locate MultipartResolver with name '" + MULTIPART_RESOLVER_BEAN_NAME +
      "': no multipart request handling provided");
   }
  }
 }

 /**
  * 初始化LocaleResolver方法,如果没有设定,默认使用acceptheaderlocaleresolver。
  */
 private void initLocaleResolver(ApplicationContext context) {
  try {
   this.localeResolver = context.getBean(LOCALE_RESOLVER_BEAN_NAME, LocaleResolver.class);
   if (logger.isDebugEnabled()) {
    logger.debug("Using LocaleResolver [" + this.localeResolver + "]");
   }
  }
  catch (NoSuchBeanDefinitionException ex) {
   // We need to use the default.
   this.localeResolver = getDefaultStrategy(context, LocaleResolver.class);
   if (logger.isDebugEnabled()) {
    logger.debug("Unable to locate LocaleResolver with name '" + LOCALE_RESOLVER_BEAN_NAME +
      "': using default [" + this.localeResolver + "]");
   }
  }
 }

 /**
  * 初始化 ThemeResolver方法,如果没有设定,默认使用FixedThemeResolver.
  */
 private void initThemeResolver(ApplicationContext context) {
  try {
   this.themeResolver = context.getBean(THEME_RESOLVER_BEAN_NAME, ThemeResolver.class);
   if (logger.isDebugEnabled()) {
    logger.debug("Using ThemeResolver [" + this.themeResolver + "]");
   }
  }
  catch (NoSuchBeanDefinitionException ex) {
   // We need to use the default.
   this.themeResolver = getDefaultStrategy(context, ThemeResolver.class);
  }
 }

 /**
  * 初始化HandlerMappings方法,默认使用BeanNameUrlHandlerMapping.
  */
 private void initHandlerMappings(ApplicationContext context) {
  this.handlerMappings = null;

  if (this.detectAllHandlerMappings) {
   // Find all HandlerMappings in the ApplicationContext, including ancestor contexts.
   Map<String, HandlerMapping> matchingBeans =
     BeanFactoryUtils.beansOfTypeIncludingAncestors(context, HandlerMapping.class, true, false);
   if (!matchingBeans.isEmpty()) {
    this.handlerMappings = new ArrayList<>(matchingBeans.values());
    // We keep HandlerMappings in sorted order.
    AnnotationAwareOrderComparator.sort(this.handlerMappings);
   }
  }
  else {
   try {
    HandlerMapping hm = context.getBean(HANDLER_MAPPING_BEAN_NAME, HandlerMapping.class);
    this.handlerMappings = Collections.singletonList(hm);
   }
   catch (NoSuchBeanDefinitionException ex) {
    // Ignore, we'll add a default HandlerMapping later.
   }
  }

  // Ensure we have at least one HandlerMapping, by registering
  // a default HandlerMapping if no other mappings are found.
  if (this.handlerMappings == null) {
   this.handlerMappings = getDefaultStrategies(context, HandlerMapping.class);
   if (logger.isDebugEnabled()) {
    logger.debug("No HandlerMappings found in servlet '" + getServletName() + "': using default");
   }
  }
 }

 /**
  * 初始化HandlerAdapters方法,默认使用SimpleControllerHandlerAdapter.
  */
 private void initHandlerAdapters(ApplicationContext context) {
  this.handlerAdapters = null;

  if (this.detectAllHandlerAdapters) {
   // Find all HandlerAdapters in the ApplicationContext, including ancestor contexts.
   Map<String, HandlerAdapter> matchingBeans =
     BeanFactoryUtils.beansOfTypeIncludingAncestors(context, HandlerAdapter.class, true, false);
   if (!matchingBeans.isEmpty()) {
    this.handlerAdapters = new ArrayList<>(matchingBeans.values());
    // We keep HandlerAdapters in sorted order.
    AnnotationAwareOrderComparator.sort(this.handlerAdapters);
   }
  }
  else {
   try {
    HandlerAdapter ha = context.getBean(HANDLER_ADAPTER_BEAN_NAME, HandlerAdapter.class);
    this.handlerAdapters = Collections.singletonList(ha);
   }
   catch (NoSuchBeanDefinitionException ex) {
    // Ignore, we'll add a default HandlerAdapter later.
   }
  }

  // Ensure we have at least some HandlerAdapters, by registering
  // default HandlerAdapters if no other adapters are found.
  if (this.handlerAdapters == null) {
   this.handlerAdapters = getDefaultStrategies(context, HandlerAdapter.class);
   if (logger.isDebugEnabled()) {
    logger.debug("No HandlerAdapters found in servlet '" + getServletName() + "': using default");
   }
  }
 }

 /**
  * 初始化HandlerExceptionResolver,默认不设置异常处理器.
  */
 private void initHandlerExceptionResolvers(ApplicationContext context) {
  this.handlerExceptionResolvers = null;

  if (this.detectAllHandlerExceptionResolvers) {
   // Find all HandlerExceptionResolvers in the ApplicationContext, including ancestor contexts.
   Map<String, HandlerExceptionResolver> matchingBeans = BeanFactoryUtils
     .beansOfTypeIncludingAncestors(context, HandlerExceptionResolver.class, true, false);
   if (!matchingBeans.isEmpty()) {
    this.handlerExceptionResolvers = new ArrayList<>(matchingBeans.values());
    // We keep HandlerExceptionResolvers in sorted order.
    AnnotationAwareOrderComparator.sort(this.handlerExceptionResolvers);
   }
  }
  else {
   try {
    HandlerExceptionResolver her =
      context.getBean(HANDLER_EXCEPTION_RESOLVER_BEAN_NAME, HandlerExceptionResolver.class);
    this.handlerExceptionResolvers = Collections.singletonList(her);
   }
   catch (NoSuchBeanDefinitionException ex) {
    // Ignore, no HandlerExceptionResolver is fine too.
   }
  }

  // Ensure we have at least some HandlerExceptionResolvers, by registering
  // default HandlerExceptionResolvers if no other resolvers are found.
  if (this.handlerExceptionResolvers == null) {
   this.handlerExceptionResolvers = getDefaultStrategies(context, HandlerExceptionResolver.class);
   if (logger.isDebugEnabled()) {
    logger.debug("No HandlerExceptionResolvers found in servlet '" + getServletName() + "': using default");
   }
  }
 }

 /**
  * 初始化RequestToViewNameTranslator,默认使用DefaultRequestToViewNameTranslator.
  */
 private void initRequestToViewNameTranslator(ApplicationContext context) {
  try {
   this.viewNameTranslator =
     context.getBean(REQUEST_TO_VIEW_NAME_TRANSLATOR_BEAN_NAME, RequestToViewNameTranslator.class);
   if (logger.isDebugEnabled()) {
    logger.debug("Using RequestToViewNameTranslator [" + this.viewNameTranslator + "]");
   }
  }
  catch (NoSuchBeanDefinitionException ex) {
   // We need to use the default.
   this.viewNameTranslator = getDefaultStrategy(context, RequestToViewNameTranslator.class);
   if (logger.isDebugEnabled()) {
    logger.debug("Unable to locate RequestToViewNameTranslator with name '" +
      REQUEST_TO_VIEW_NAME_TRANSLATOR_BEAN_NAME + "': using default [" + this.viewNameTranslator +
      "]");
   }
  }
 }

 /**
  * 初始化ViewResolvers方法,默认使用InternalResourceViewResolver.
  */
 private void initViewResolvers(ApplicationContext context) {
  this.viewResolvers = null;

  if (this.detectAllViewResolvers) {
   // Find all ViewResolvers in the ApplicationContext, including ancestor contexts.
   Map<String, ViewResolver> matchingBeans =
     BeanFactoryUtils.beansOfTypeIncludingAncestors(context, ViewResolver.class, true, false);
   if (!matchingBeans.isEmpty()) {
    this.viewResolvers = new ArrayList<>(matchingBeans.values());
    // We keep ViewResolvers in sorted order.
    AnnotationAwareOrderComparator.sort(this.viewResolvers);
   }
  }
  else {
   try {
    ViewResolver vr = context.getBean(VIEW_RESOLVER_BEAN_NAME, ViewResolver.class);
    this.viewResolvers = Collections.singletonList(vr);
   }
   catch (NoSuchBeanDefinitionException ex) {
    // Ignore, we'll add a default ViewResolver later.
   }
  }

  // Ensure we have at least one ViewResolver, by registering
  // a default ViewResolver if no other resolvers are found.
  if (this.viewResolvers == null) {
   this.viewResolvers = getDefaultStrategies(context, ViewResolver.class);
   if (logger.isDebugEnabled()) {
    logger.debug("No ViewResolvers found in servlet '" + getServletName() + "': using default");
   }
  }
 }

 /**
  * 初始化FlashMapManager方法,默认使用DefaultFlashMapManager.
  */
 private void initFlashMapManager(ApplicationContext context) {
  try {
   this.flashMapManager = context.getBean(FLASH_MAP_MANAGER_BEAN_NAME, FlashMapManager.class);
  }
  catch (NoSuchBeanDefinitionException ex) {
   // We need to use the default.
   this.flashMapManager = getDefaultStrategy(context, FlashMapManager.class);
  }
 }

 /**
  * 获取当前上下文的ThemeSource。
  */
 public final ThemeSource getThemeSource() {
  if (getWebApplicationContext() instanceof ThemeSource) {
   return (ThemeSource) getWebApplicationContext();
  }
  else {
   return null;
  }
 }

 /**
    * 获取当前上下文的MultipartResolver。

  */
 public final MultipartResolver getMultipartResolver() {
  return this.multipartResolver;
 }

 /**
  * 根据指定的策越接口,获取默认的策越对象

  */
 protected <T> T getDefaultStrategy(ApplicationContext context, Class<T> strategyInterface) {
  List<T> strategies = getDefaultStrategies(context, strategyInterface);
  if (strategies.size() != 1) {
   throw new BeanInitializationException(
     "DispatcherServlet needs exactly 1 strategy for interface [" + strategyInterface.getName() + "]");
  }
  return strategies.get(0);
 }

 /**
  * 根据指定的策越接口,创建一个默认的策越对象的集合.
  */
 @SuppressWarnings("unchecked")
 protected <T> List<T> getDefaultStrategies(ApplicationContext context, Class<T> strategyInterface) {
  String key = strategyInterface.getName();
  String value = defaultStrategies.getProperty(key);
  if (value != null) {
   String[] classNames = StringUtils.commaDelimitedListToStringArray(value);
   List<T> strategies = new ArrayList<>(classNames.length);
   for (String className : classNames) {
    try {
     Class<?> clazz = ClassUtils.forName(className, DispatcherServlet.class.getClassLoader());
     Object strategy = createDefaultStrategy(context, clazz);
     strategies.add((T) strategy);
    }
    catch (ClassNotFoundException ex) {
     throw new BeanInitializationException(
       "Could not find DispatcherServlet's default strategy class [" + className +
         "] for interface [" + key + "]", ex);
    }
    catch (LinkageError err) {
     throw new BeanInitializationException(
       "Error loading DispatcherServlet's default strategy class [" + className +
         "] for interface [" + key + "]: problem with class file or dependent class", err);
    }
   }
   return strategies;
  }
  else {
   return new LinkedList<>();
  }
 }

 /**
  *创建默认的策越对象
  */
 protected Object createDefaultStrategy(ApplicationContext context, Class<?> clazz) {
  return context.getAutowireCapableBeanFactory().createBean(clazz);
 }


 /**
  * Exposes the DispatcherServlet-specific request attributes and delegates to {@link #doDispatch}
  * for the actual dispatching.
  */
 @Override
 protected void doService(HttpServletRequest request, HttpServletResponse response) throws Exception {
  if (logger.isDebugEnabled()) {
   String resumed = WebAsyncUtils.getAsyncManager(request).hasConcurrentResult() ? " resumed" : "";
   logger.debug("DispatcherServlet with name '" + getServletName() + "'" + resumed +
     " processing " + request.getMethod() + " request for [" + getRequestUri(request) + "]");
  }

  // Keep a snapshot of the request attributes in case of an include,
  // to be able to restore the original attributes after the include.
  Map<String, Object> attributesSnapshot = null;
  if (WebUtils.isIncludeRequest(request)) {
   attributesSnapshot = new HashMap<>();
   Enumeration<?> attrNames = request.getAttributeNames();
   while (attrNames.hasMoreElements()) {
    String attrName = (String) attrNames.nextElement();
    if (this.cleanupAfterInclude || attrName.startsWith("org.springframework.web.servlet")) {
     attributesSnapshot.put(attrName, request.getAttribute(attrName));
    }
   }
  }

  // Make framework objects available to handlers and view objects.
  request.setAttribute(WEB_APPLICATION_CONTEXT_ATTRIBUTE, getWebApplicationContext());
  request.setAttribute(LOCALE_RESOLVER_ATTRIBUTE, this.localeResolver);
  request.setAttribute(THEME_RESOLVER_ATTRIBUTE, this.themeResolver);
  request.setAttribute(THEME_SOURCE_ATTRIBUTE, getThemeSource());

  FlashMap inputFlashMap = this.flashMapManager.retrieveAndUpdate(request, response);
  if (inputFlashMap != null) {
   request.setAttribute(INPUT_FLASH_MAP_ATTRIBUTE, Collections.unmodifiableMap(inputFlashMap));
  }
  request.setAttribute(OUTPUT_FLASH_MAP_ATTRIBUTE, new FlashMap());
  request.setAttribute(FLASH_MAP_MANAGER_ATTRIBUTE, this.flashMapManager);

  try {
   doDispatch(request, response);
  }
  finally {
   if (!WebAsyncUtils.getAsyncManager(request).isConcurrentHandlingStarted()) {
    // Restore the original attribute snapshot, in case of an include.
    if (attributesSnapshot != null) {
     restoreAttributesAfterInclude(request, attributesSnapshot);
    }
   }
  }
 }

 /**
  * Process the actual dispatching to the handler.
  * <p>The handler will be obtained by applying the servlet's HandlerMappings in order.
  * The HandlerAdapter will be obtained by querying the servlet's installed HandlerAdapters
  * to find the first that supports the handler class.
  * <p>All HTTP methods are handled by this method. It's up to HandlerAdapters or handlers
  * themselves to decide which methods are acceptable.
  * @param request current HTTP request
  * @param response current HTTP response
  * @throws Exception in case of any kind of processing failure
  */
 protected void doDispatch(HttpServletRequest request, HttpServletResponse response) throws Exception {
  HttpServletRequest processedRequest = request;
  HandlerExecutionChain mappedHandler = null;
  boolean multipartRequestParsed = false;

  WebAsyncManager asyncManager = WebAsyncUtils.getAsyncManager(request);

  try {
   ModelAndView mv = null;
   Exception dispatchException = null;

   try {
    processedRequest = checkMultipart(request);
    multipartRequestParsed = (processedRequest != request);

    // Determine handler for the current request.
    mappedHandler = getHandler(processedRequest);
    if (mappedHandler == null || mappedHandler.getHandler() == null) {
     noHandlerFound(processedRequest, response);
     return;
    }

    // Determine handler adapter for the current request.
    HandlerAdapter ha = getHandlerAdapter(mappedHandler.getHandler());

    // Process last-modified header, if supported by the handler.
    String method = request.getMethod();
    boolean isGet = "GET".equals(method);
    if (isGet || "HEAD".equals(method)) {
     long lastModified = ha.getLastModified(request, mappedHandler.getHandler());
     if (logger.isDebugEnabled()) {
      logger.debug("Last-Modified value for [" + getRequestUri(request) + "] is: " + lastModified);
     }
     if (new ServletWebRequest(request, response).checkNotModified(lastModified) && isGet) {
      return;
     }
    }

    if (!mappedHandler.applyPreHandle(processedRequest, response)) {
     return;
    }

    // Actually invoke the handler.
    mv = ha.handle(processedRequest, response, mappedHandler.getHandler());

    if (asyncManager.isConcurrentHandlingStarted()) {
     return;
    }

    applyDefaultViewName(processedRequest, mv);
    mappedHandler.applyPostHandle(processedRequest, response, mv);
   }
   catch (Exception ex) {
    dispatchException = ex;
   }
   catch (Throwable err) {
    // As of 4.3, we're processing Errors thrown from handler methods as well,
    // making them available for @ExceptionHandler methods and other scenarios.
    dispatchException = new NestedServletException("Handler dispatch failed", err);
   }
   processDispatchResult(processedRequest, response, mappedHandler, mv, dispatchException);
  }
  catch (Exception ex) {
   triggerAfterCompletion(processedRequest, response, mappedHandler, ex);
  }
  catch (Throwable err) {
   triggerAfterCompletion(processedRequest, response, mappedHandler,
     new NestedServletException("Handler processing failed", err));
  }
  finally {
   if (asyncManager.isConcurrentHandlingStarted()) {
    // Instead of postHandle and afterCompletion
    if (mappedHandler != null) {
     mappedHandler.applyAfterConcurrentHandlingStarted(processedRequest, response);
    }
   }
   else {
    // Clean up any resources used by a multipart request.
    if (multipartRequestParsed) {
     cleanupMultipart(processedRequest);
    }
   }
  }
 }

 /**
  * Do we need view name translation?
  */
 private void applyDefaultViewName(HttpServletRequest request, ModelAndView mv) throws Exception {
  if (mv != null && !mv.hasView()) {
   mv.setViewName(getDefaultViewName(request));
  }
 }

 /**
  * Handle the result of handler selection and handler invocation, which is
  * either a ModelAndView or an Exception to be resolved to a ModelAndView.
  */
 private void processDispatchResult(HttpServletRequest request, HttpServletResponse response,
   HandlerExecutionChain mappedHandler, ModelAndView mv, Exception exception) throws Exception {

  boolean errorView = false;

  if (exception != null) {
   if (exception instanceof ModelAndViewDefiningException) {
    logger.debug("ModelAndViewDefiningException encountered", exception);
    mv = ((ModelAndViewDefiningException) exception).getModelAndView();
   }
   else {
    Object handler = (mappedHandler != null ? mappedHandler.getHandler() : null);
    mv = processHandlerException(request, response, handler, exception);
    errorView = (mv != null);
   }
  }

  // Did the handler return a view to render?
  if (mv != null && !mv.wasCleared()) {
   render(mv, request, response);
   if (errorView) {
    WebUtils.clearErrorRequestAttributes(request);
   }
  }
  else {
   if (logger.isDebugEnabled()) {
    logger.debug("Null ModelAndView returned to DispatcherServlet with name '" + getServletName() +
      "': assuming HandlerAdapter completed request handling");
   }
  }

  if (WebAsyncUtils.getAsyncManager(request).isConcurrentHandlingStarted()) {
   // Concurrent handling started during a forward
   return;
  }

  if (mappedHandler != null) {
   mappedHandler.triggerAfterCompletion(request, response, null);
  }
 }

 /**
  * Build a LocaleContext for the given request, exposing the request's primary locale as current locale.
  * <p>The default implementation uses the dispatcher's LocaleResolver to obtain the current locale,
  * which might change during a request.
  * @param request current HTTP request
  * @return the corresponding LocaleContext
  */
 @Override
 protected LocaleContext buildLocaleContext(final HttpServletRequest request) {
  if (this.localeResolver instanceof LocaleContextResolver) {
   return ((LocaleContextResolver) this.localeResolver).resolveLocaleContext(request);
  }
  else {
   return new LocaleContext() {
    @Override
    public Locale getLocale() {
     return localeResolver.resolveLocale(request);
    }
   };
  }
 }

 /**
  * Convert the request into a multipart request, and make multipart resolver available.
  * <p>If no multipart resolver is set, simply use the existing request.
  * @param request current HTTP request
  * @return the processed request (multipart wrapper if necessary)
  * @see MultipartResolver#resolveMultipart
  */
 protected HttpServletRequest checkMultipart(HttpServletRequest request) throws MultipartException {
  if (this.multipartResolver != null && this.multipartResolver.isMultipart(request)) {
   if (WebUtils.getNativeRequest(request, MultipartHttpServletRequest.class) != null) {
    logger.debug("Request is already a MultipartHttpServletRequest - if not in a forward, " +
      "this typically results from an additional MultipartFilter in web.xml");
   }
   else if (hasMultipartException(request) ) {
    logger.debug("Multipart resolution failed for current request before - " +
      "skipping re-resolution for undisturbed error rendering");
   }
   else {
    try {
     return this.multipartResolver.resolveMultipart(request);
    }
    catch (MultipartException ex) {
     if (request.getAttribute(WebUtils.ERROR_EXCEPTION_ATTRIBUTE) != null) {
      logger.debug("Multipart resolution failed for error dispatch", ex);
      // Keep processing error dispatch with regular request handle below
     }
     else {
      throw ex;
     }
    }
   }
  }
  // If not returned before: return original request.
  return request;
 }

 /**
  * Check "javax.servlet.error.exception" attribute for a multipart exception.
  */
 private boolean hasMultipartException(HttpServletRequest request) {
  Throwable error = (Throwable) request.getAttribute(WebUtils.ERROR_EXCEPTION_ATTRIBUTE);
  while (error != null) {
   if (error instanceof MultipartException) {
    return true;
   }
   error = error.getCause();
  }
  return false;
 }

 /**
  * Clean up any resources used by the given multipart request (if any).
  * @param request current HTTP request
  * @see MultipartResolver#cleanupMultipart
  */
 protected void cleanupMultipart(HttpServletRequest request) {
  MultipartHttpServletRequest multipartRequest =
    WebUtils.getNativeRequest(request, MultipartHttpServletRequest.class);
  if (multipartRequest != null) {
   this.multipartResolver.cleanupMultipart(multipartRequest);
  }
 }

 /**
  * Return the HandlerExecutionChain for this request.
  * <p>Tries all handler mappings in order.
  * @param request current HTTP request
  * @return the HandlerExecutionChain, or {@code null} if no handler could be found
  */
 protected HandlerExecutionChain getHandler(HttpServletRequest request) throws Exception {
  for (HandlerMapping hm : this.handlerMappings) {
   if (logger.isTraceEnabled()) {
    logger.trace(
      "Testing handler map [" + hm + "] in DispatcherServlet with name '" + getServletName() + "'");
   }
   HandlerExecutionChain handler = hm.getHandler(request);
   if (handler != null) {
    return handler;
   }
  }
  return null;
 }

 /**
  * No handler found -> set appropriate HTTP response status.
  * @param request current HTTP request
  * @param response current HTTP response
  * @throws Exception if preparing the response failed
  */
 protected void noHandlerFound(HttpServletRequest request, HttpServletResponse response) throws Exception {
  if (pageNotFoundLogger.isWarnEnabled()) {
   pageNotFoundLogger.warn("No mapping found for HTTP request with URI [" + getRequestUri(request) +
     "] in DispatcherServlet with name '" + getServletName() + "'");
  }
  if (this.throwExceptionIfNoHandlerFound) {
   throw new NoHandlerFoundException(request.getMethod(), getRequestUri(request),
     new ServletServerHttpRequest(request).getHeaders());
  }
  else {
   response.sendError(HttpServletResponse.SC_NOT_FOUND);
  }
 }

 /**
  * Return the HandlerAdapter for this handler object.
  * @param handler the handler object to find an adapter for
  * @throws ServletException if no HandlerAdapter can be found for the handler. This is a fatal error.
  */
 protected HandlerAdapter getHandlerAdapter(Object handler) throws ServletException {
  for (HandlerAdapter ha : this.handlerAdapters) {
   if (logger.isTraceEnabled()) {
    logger.trace("Testing handler adapter [" + ha + "]");
   }
   if (ha.supports(handler)) {
    return ha;
   }
  }
  throw new ServletException("No adapter for handler [" + handler +
    "]: The DispatcherServlet configuration needs to include a HandlerAdapter that supports this handler");
 }

 /**
  * Determine an error ModelAndView via the registered HandlerExceptionResolvers.
  * @param request current HTTP request
  * @param response current HTTP response
  * @param handler the executed handler, or {@code null} if none chosen at the time of the exception
  * (for example, if multipart resolution failed)
  * @param ex the exception that got thrown during handler execution
  * @return a corresponding ModelAndView to forward to
  * @throws Exception if no error ModelAndView found
  */
 protected ModelAndView processHandlerException(HttpServletRequest request, HttpServletResponse response,
   Object handler, Exception ex) throws Exception {

  // Check registered HandlerExceptionResolvers...
  ModelAndView exMv = null;
  for (HandlerExceptionResolver handlerExceptionResolver : this.handlerExceptionResolvers) {
   exMv = handlerExceptionResolver.resolveException(request, response, handler, ex);
   if (exMv != null) {
    break;
   }
  }
  if (exMv != null) {
   if (exMv.isEmpty()) {
    request.setAttribute(EXCEPTION_ATTRIBUTE, ex);
    return null;
   }
   // We might still need view name translation for a plain error model...
   if (!exMv.hasView()) {
    exMv.setViewName(getDefaultViewName(request));
   }
   if (logger.isDebugEnabled()) {
    logger.debug("Handler execution resulted in exception - forwarding to resolved error view: " + exMv, ex);
   }
   WebUtils.exposeErrorRequestAttributes(request, ex, getServletName());
   return exMv;
  }

  throw ex;
 }

 /**
  * Render the given ModelAndView.
  * <p>This is the last stage in handling a request. It may involve resolving the view by name.
  * @param mv the ModelAndView to render
  * @param request current HTTP servlet request
  * @param response current HTTP servlet response
  * @throws ServletException if view is missing or cannot be resolved
  * @throws Exception if there's a problem rendering the view
  */
 protected void render(ModelAndView mv, HttpServletRequest request, HttpServletResponse response) throws Exception {
  // Determine locale for request and apply it to the response.
  Locale locale = this.localeResolver.resolveLocale(request);
  response.setLocale(locale);

  View view;
  if (mv.isReference()) {
   // We need to resolve the view name.
   view = resolveViewName(mv.getViewName(), mv.getModelInternal(), locale, request);
   if (view == null) {
    throw new ServletException("Could not resolve view with name '" + mv.getViewName() +
      "' in servlet with name '" + getServletName() + "'");
   }
  }
  else {
   // No need to lookup: the ModelAndView object contains the actual View object.
   view = mv.getView();
   if (view == null) {
    throw new ServletException("ModelAndView [" + mv + "] neither contains a view name nor a " +
      "View object in servlet with name '" + getServletName() + "'");
   }
  }

  // Delegate to the View object for rendering.
  if (logger.isDebugEnabled()) {
   logger.debug("Rendering view [" + view + "] in DispatcherServlet with name '" + getServletName() + "'");
  }
  try {
   if (mv.getStatus() != null) {
    response.setStatus(mv.getStatus().value());
   }
   view.render(mv.getModelInternal(), request, response);
  }
  catch (Exception ex) {
   if (logger.isDebugEnabled()) {
    logger.debug("Error rendering view [" + view + "] in DispatcherServlet with name '" +
      getServletName() + "'", ex);
   }
   throw ex;
  }
 }

 /**
  * Translate the supplied request into a default view name.
  * @param request current HTTP servlet request
  * @return the view name (or {@code null} if no default found)
  * @throws Exception if view name translation failed
  */
 protected String getDefaultViewName(HttpServletRequest request) throws Exception {
  return this.viewNameTranslator.getViewName(request);
 }

 /**
  * Resolve the given view name into a View object (to be rendered).
  * <p>The default implementations asks all ViewResolvers of this dispatcher.
  * Can be overridden for custom resolution strategies, potentially based on
  * specific model attributes or request parameters.
  * @param viewName the name of the view to resolve
  * @param model the model to be passed to the view
  * @param locale the current locale
  * @param request current HTTP servlet request
  * @return the View object, or {@code null} if none found
  * @throws Exception if the view cannot be resolved
  * (typically in case of problems creating an actual View object)
  * @see ViewResolver#resolveViewName
  */
 protected View resolveViewName(String viewName, Map<String, Object> model, Locale locale,
   HttpServletRequest request) throws Exception {

  for (ViewResolver viewResolver : this.viewResolvers) {
   View view = viewResolver.resolveViewName(viewName, locale);
   if (view != null) {
    return view;
   }
  }
  return null;
 }

 private void triggerAfterCompletion(HttpServletRequest request, HttpServletResponse response,
   HandlerExecutionChain mappedHandler, Exception ex) throws Exception {

  if (mappedHandler != null) {
   mappedHandler.triggerAfterCompletion(request, response, ex);
  }
  throw ex;
 }

 /**
  * Restore the request attributes after an include.
  * @param request current HTTP request
  * @param attributesSnapshot the snapshot of the request attributes before the include
  */
 @SuppressWarnings("unchecked")
 private void restoreAttributesAfterInclude(HttpServletRequest request, Map<?,?> attributesSnapshot) {
  // Need to copy into separate Collection here, to avoid side effects
  // on the Enumeration when removing attributes.
  Set<String> attrsToCheck = new HashSet<>();
  Enumeration<?> attrNames = request.getAttributeNames();
  while (attrNames.hasMoreElements()) {
   String attrName = (String) attrNames.nextElement();
   if (this.cleanupAfterInclude || attrName.startsWith("org.springframework.web.servlet")) {
    attrsToCheck.add(attrName);
   }
  }

  // Add attributes that may have been removed
  attrsToCheck.addAll((Set<String>) attributesSnapshot.keySet());

  // Iterate over the attributes to check, restoring the original value
  // or removing the attribute, respectively, if appropriate.
  for (String attrName : attrsToCheck) {
   Object attrValue = attributesSnapshot.get(attrName);
   if (attrValue == null){
    request.removeAttribute(attrName);
   }
   else if (attrValue != request.getAttribute(attrName)) {
    request.setAttribute(attrName, attrValue);
   }
  }
 }


/**获取请求的URL*/

 private static String getRequestUri(HttpServletRequest request) {
  String uri = (String) request.getAttribute(WebUtils.INCLUDE_REQUEST_URI_ATTRIBUTE);
  if (uri == null) {
   uri = request.getRequestURI();
  }
  return uri;
 }

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值