SpringMVC源码分析(1):分析DispatcherServlet.doDispatch方法,了解总体流程

本文主要是介绍SpringMVC源码分析(1):分析DispatcherServlet.doDispatch方法,了解总体流程,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

所有的http请求都会交给DispatcherServlet类的doDispatch方法进行处理,将DispatcherServlet.doDispatch函数的javadoc复制到下面:

复制代码
/** Process the actual dispatching to the handler.* * 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.* * All HTTP methods are handled by this method. It's up to HandlerAdapters* or handlers themselves to decide which methods are acceptable.*/void org.springframework.web.servlet.DispatcherServlet.doDispatch(HttpServletRequest request, HttpServletResponse response) throws Exception;
复制代码

 

下面分析doDispatch方法的流程,采用注释源码的方式:

复制代码
  1 protected void doDispatch(HttpServletRequest request,
  2             HttpServletResponse response) throws Exception {
  3         
  4         // processedRequest是经过checkMultipart方法处理过的request请求
  5         HttpServletRequest processedRequest = request;
  6         /**
  7          * Handler execution chain, consisting of handler object and any handler
  8          * interceptors. Returned by HandlerMapping's HandlerMapping.getHandler
  9          * method. 看看HandlerExecutionChain类的属性就很清楚了:
 10          * 
 11           public class HandlerExecutionChain {
 12          
 13                   private final Object handler; //这个就是和该请求对应的handler处理方法
 14          
 15                  //里面记录了所有的(any handler interceptors)和该请求相关的拦截器
 16                   private HandlerInterceptor[] interceptors;
 17           
 18                   private List<HandlerInterceptor> interceptorList; 
 19          
 20                   private int interceptorIndex = -1; 
 21                       
 22                   //... 
 23           }
 24          * 
 25          */
 26         HandlerExecutionChain mappedHandler = null;
 27         boolean multipartRequestParsed = false;
 28 
 29         WebAsyncManager asyncManager = WebAsyncUtils.getAsyncManager(request);
 30 
 31         try {
 32             ModelAndView mv = null;
 33             Exception dispatchException = null;
 34 
 35             try {
 36                 processedRequest = checkMultipart(request);
 37                 multipartRequestParsed = (processedRequest != request);
 38 
 39                 // Determine handler for the current request.Return a handler
 40                 // and any interceptors for this request.
 41                 /*
 42                  * 得到的mappedHandler包含一个请求的handler处理方法以及与该请求相关的所有拦截器
 43                  * 
 44                  * DispatcherServlet.getHandler方法会在底层调用HandlerMapping.getHandler方法
 45                  * ,这个方法中会遍 历DispatcherServlet中的private List<HandlerMapping>
 46                  * handlerMappings链表,找到能够处理当前 request请求的第一个HandlerMapping实例并返回:
 47                  * 
 48                   protected HandlerExecutionChain getHandler(HttpServletRequest request) throws Exception {
 49                       for (HandlerMapping hm : this.handlerMappings) {
 50                               HandlerExecutionChain handler = hm.getHandler(request);
 51                               if (handler != null) {
 52                                      return handler;
 53                               }
 54                       }
 55                       return null;
 56                   }
 57                  *
 58                  */
 59                 mappedHandler = getHandler(processedRequest);
 60                 // 如果没有找到和该请求相对应的mappedHandler,那么就会直接返回,并应答noHandlerFound异常
 61                 if (mappedHandler == null || mappedHandler.getHandler() == null) {
 62                     noHandlerFound(processedRequest, response);
 63                     return;
 64                 }
 65 
 66                 // Determine handler adapter for the current request.
 67                 /*
 68                  * HandlerAdapter: 它是一个接口public interface HandlerAdapter
 69                  * 看看源码上的说明:The DispatcherServlet accesses all installed
 70                  * handlers through this interface, meaning that it does not
 71                  * contain code specific to any handler type.
 72                  * 
 73                  * 从后面的源码看出,在使用@RequestMapping注解标注handler方法的时候,获取到的是HandlerAdapter的
 74                  * RequestMappingHandlerAdapter实现类的一个对象。
 75                  * 
 76                  * 可以看看DispatcherServlet.getHandlerAdapter方法的定义,这个对理解上回很有帮助,我们会发现
 77                  * ,getHandlerAdapter 方法和上面提到的getHandler方法一样都是寻找第一个可用的作为返回结果:
 78                  *
 79                  * 
 80                   protected HandlerAdapter getHandlerAdapter(Object handler) throws ServletException {
 81                      //this.handlerAdapters的定义是 private List<HandlerAdapter> handlerAdapters
 82                          for (HandlerAdapter ha : this.handlerAdapters) { 
 83                               if (ha.supports(handler)) {
 84                                    return ha;
 85                               }
 86                          }
 87                          throw new ServletException("No adapter for handler [" + handler +
 88                                  "]: The DispatcherServlet configuration needs to include a HandlerAdapter that supports this handler");
 89                   }
 90                  * 
 91                  */
 92                 HandlerAdapter ha = getHandlerAdapter(mappedHandler
 93                         .getHandler());
 94 
 95                 // Process last-modified header, if supported by the handler.
 96                 String method = request.getMethod();
 97                 boolean isGet = "GET".equals(method);
 98                 if (isGet || "HEAD".equals(method)) {
 99                     long lastModified = ha.getLastModified(request,
100                             mappedHandler.getHandler());
101                     if (logger.isDebugEnabled()) {
102                         logger.debug("Last-Modified value for ["
103                                 + getRequestUri(request) + "] is: "
104                                 + lastModified);
105                     }
106                     if (new ServletWebRequest(request, response)
107                             .checkNotModified(lastModified) && isGet) {
108                         return;
109                     }
110                 }
111 
112                 // Apply preHandle methods of registered interceptors.
113                 /*
114                  * 会调用所有注册拦截器的preHandle方法,如果preHandle方法的返回结果为true,则会继续执行下面的程序,
115                  * 否则会直接返回。
116                  * 
117                  * 分析一下HandlerExecutionChain.applyPreHandle方法的源码 :
118                   boolean applyPreHandle(HttpServletRequest request, HttpServletResponse response) throws Exception {
119                          //从上面的HandlerExecutionChain定义处可以看见有个interceptors,还有一个interceptorList。不知道有什么区别??!
120                          HandlerInterceptor[] interceptors = getInterceptors();
121                          //如果已经注册有拦截器,则遍历拦截器
122                          if (!ObjectUtils.isEmpty(interceptors)) {
123                              for (int i = 0; i < interceptors.length; i++) {
124                                  HandlerInterceptor interceptor = interceptors[i];
125                                  //如果注册拦截器的preHandle方法返回一个false,则该applyPreHandle方法就会返回false,从而在doDispatcher中的代码就不会往下执行了
126                                  if (!interceptor.preHandle(request, response, this.handler)) {
127                                      
128                                      //这个方法要注意,它会调用所有已经成功执行的拦截器的afterCompletion方法,而且是反序调用的过程,可以分析triggerAfterCompletion
129                                      //的源代码,主要是利用interceptorIndex反减的方式实现的。下面是源码的英文注释:
130                                      //Trigger afterCompletion callbacks on the mapped HandlerInterceptors.
131                                       //Will just invoke afterCompletion for all interceptors whose preHandle invocation
132                                       //has successfully completed and returned true.
133                                      triggerAfterCompletion(request, response, null);
134                                      return false;
135                              }
136                                  //没成功执行一个拦截器的preHandle方法,其interceptorIndex就会增加1;原始值为-1。
137                                   this.interceptorIndex = i;
138                              }
139                          }
140                          return true;
141                      }
142                  *
143                  *
144                  *  顺带看看triggerAfterCompletion的源代码,很容易理解为什么拦截器的afterCompletion方法是反序执行的:
145                  *    void triggerAfterCompletion(HttpServletRequest request, HttpServletResponse response, Exception ex)
146                              throws Exception {
147                 
148                         HandlerInterceptor[] interceptors = getInterceptors();
149                         if (!ObjectUtils.isEmpty(interceptors)) {
150                             for (int i = this.interceptorIndex; i >= 0; i--) {
151                                 HandlerInterceptor interceptor = interceptors[i];
152                                 try {
153                                     interceptor.afterCompletion(request, response, this.handler, ex);
154                                 }
155                                 catch (Throwable ex2) {
156                                     logger.error("HandlerInterceptor.afterCompletion threw exception", ex2);
157                                 }
158                             }
159                         }
160                     }
161                  *
162                  *
163                  */
164                 if (!mappedHandler.applyPreHandle(processedRequest, response)) {
165                     return;
166                 }
167 
168                 // Actually invoke the handler.
169                 /*
170                  * 在这个函数里面会真正的执行request请求相对于的handler方法,可以想象:在真正调用方法之前还会有很多的
171                  * 先前处理。在这里仅仅是分析出大概的代码执行流程,其细节的部分在后面的单独模块源码分析的时候做详细的讲解。
172                  * 上面讲解到HandlerAdapter是一个接口:public interface HandlerAdapter,那么必然会有很多
173                  * 中实现类,在采用注解@RequstMapping的方式标注handler的情况下,ha.handle方法会在底层调用具体的
174                  * HandlerAdapter类实现方法RequestMappingHandlerAdapter.handleInternal
175                  * 
176                  * 分析一下RequestMappingHandlerAdapter.handleInternal的源代码:
177                       protected ModelAndView handleInternal(HttpServletRequest request,
178                         HttpServletResponse response, HandlerMethod handlerMethod) throws Exception {
179                         //好像是看control的类定义处是否使用了@SessionAttributes注解,checkAndPrepare方法有什么作用???
180                         if (getSessionAttributesHandler(handlerMethod).hasSessionAttributes()) {
181                             // Always prevent caching in case of session attribute management.
182                             checkAndPrepare(request, response, this.cacheSecondsForSessionAttributeHandlers, true);
183                         }
184                         else {
185                             // Uses configured default cacheSeconds setting.
186                             checkAndPrepare(request, response, true);
187                         }
188                         
189                         // Execute invokeHandlerMethod in synchronized block if required.
190                         // 这里是个值得注意的地方,synchronizeOnSession的值默认为false,如果通过某个方法使得其为true,那么request对应的handler
191                         // 将会被放在同步快中进行处理。在什么时机下,使用什么方法才能将其设置为true呢???
192                         if (this.synchronizeOnSession) {
193                             HttpSession session = request.getSession(false);
194                             if (session != null) {
195                                 Object mutex = WebUtils.getSessionMutex(session);
196                                 // 将handler放在同步块中处理
197                                 synchronized (mutex) {
198                                     return invokeHandleMethod(request, response, handlerMethod);
199                                 }
200                             }
201                         }
202                         //在invokeHandleMethod中会①将所有标注有@ModelAttrib的方法都执行一遍,②调用invokeAndHandle(webRequest, mavContainer)
203                         //方法,在这里面调用handler方法,③最后调用getModelAndView(mavContainer, modelFactory, webRequest)方法的到ModelAndView。
204                         //invokeHandleMethod这个方法还有很多东西要分析,留在后面。
205                         //从上面的③我们可以看出,无论handler采用哪种模型化处理方式,最后都是将结果转化为ModelAndView
206                         return invokeHandleMethod(request, response, handlerMethod);
207                     }
208                  */
209                 mv = ha.handle(processedRequest, response,
210                         mappedHandler.getHandler());
211 
212                 if (asyncManager.isConcurrentHandlingStarted()) {
213                     return;
214                 }
215 
216                 applyDefaultViewName(request, mv);
217                 /*
218                  * 调用request相关的拦截器的postHandle方法,注意,这个也是反序调用的。看看源代码:
219                  *
220                   void applyPostHandle(HttpServletRequest request, HttpServletResponse response, ModelAndView mv) throws Exception {
221                         HandlerInterceptor[] interceptors = getInterceptors();
222                         if (!ObjectUtils.isEmpty(interceptors)) {
223                             //注意,这里也是反序执行,而且是所有成功执行了的postHandle拦截器
224                             for (int i = interceptors.length - 1; i >= 0; i--) {
225                                 HandlerInterceptor interceptor = interceptors[i];
226                                 //这里传入的参数中有mv,也就是说,我们是有办法在拦截器的postHandle方法中修改已经返回的mv
227                                 interceptor.postHandle(request, response, this.handler, mv);
228                             }
229                         }
230                     }
231                  */
232                 mappedHandler.applyPostHandle(processedRequest, response, mv);
233             } catch (Exception ex) {
234                 dispatchException = ex;
235             }
236             processDispatchResult(processedRequest, response, mappedHandler,
237                     mv, dispatchException);
238         } catch (Exception ex) {
239             triggerAfterCompletion(processedRequest, response, mappedHandler,
240                     ex);
241         } catch (Error err) {
242             triggerAfterCompletionWithError(processedRequest, response,
243                     mappedHandler, err);
244         } finally {
245             if (asyncManager.isConcurrentHandlingStarted()) {
246                 // Instead of postHandle and afterCompletion
247                 if (mappedHandler != null) {
248                     mappedHandler.applyAfterConcurrentHandlingStarted(
249                             processedRequest, response);
250                 }
251             } else {
252                 // Clean up any resources used by a multipart request.
253                 if (multipartRequestParsed) {
254                     cleanupMultipart(processedRequest);
255                 }
256             }
257         }
258     }
复制代码

 

看完源代码就可以总结出doDispath方法中处理http请求的流程了:

这篇关于SpringMVC源码分析(1):分析DispatcherServlet.doDispatch方法,了解总体流程的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/973872

相关文章

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

Go标准库常见错误分析和解决办法

《Go标准库常见错误分析和解决办法》Go语言的标准库为开发者提供了丰富且高效的工具,涵盖了从网络编程到文件操作等各个方面,然而,标准库虽好,使用不当却可能适得其反,正所谓工欲善其事,必先利其器,本文将... 目录1. 使用了错误的time.Duration2. time.After导致的内存泄漏3. jsO

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain