当一个http请求来临时,SpringMVC究竟偷偷帮你做了什么?

Posted JAVA程序狗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当一个http请求来临时,SpringMVC究竟偷偷帮你做了什么?相关的知识,希望对你有一定的参考价值。

一、简介

Spring MVC是一个基于Java的实现了MVC设计模式的请求驱动类型的轻量级Web框架,通过把Model,View,Controller分离,将web层进行职责解耦,把复杂的web应用分成逻辑清晰的几部分,简化开发,减少出错,方便组内开发人员之间的配合。

1. Springmvc的优点:

  1. 可以支持各种视图技术,而不仅仅局限于JSP;

  2. 与Spring框架集成(如IoC容器、AOP等);

  3. 清晰的角色分配:前端控制器(dispatcherServlet) , 请求到处理器映射(handlerMapping), 处理器适配器(HandlerAdapter), 视图解析器(ViewResolver)。

  4. 支持各种请求资源的映射策略。

2. 请求映射器源码解析

这些优秀的特性使得他在企业级开发中使用率超过98%,如此优秀的框架,你是否疑惑过,在一个请求到达后,是如何被SpringMvc拦截到并处理的?

相信大家对上面的流程图都很熟悉,或多或少无论是在准备面试的时候,还是自己学习的时候,都会接触到这个流程图,我见过很多的人,对着这个图死记硬背!我也面试过一些技术人员,问到这块知识,仰着头闭着眼(夸张一下)把这块知识说出来,再往深了问一点就懵逼,归根到底就是对框架理解不够深刻。

I. SpringMVC是如何感知到每个方法对应的url路径的?

org.springframework.web.servlet.handler.AbstractHandlerMethodMapping 实现 org.springframework.beans.factory.InitializingBean 覆盖 afterPropertiesSet方法,这个方法会在Spring容器初始化的时候回调该方法

当一个http请求来临时,SpringMVC究竟偷偷帮你做了什么?

该方法类定义为

 
   
   
 
  1. @Override

  2. public void afterPropertiesSet() {

  3. initHandlerMethods();

  4. }

调用initHandlerMethods方法,那么initHandlerMethods里面干了什么事情呢?对该方法逐步分析!

 
   
   
 
  1. /**

  2. * Scan beans in the ApplicationContext, detect and register handler methods.

  3. * @see #getCandidateBeanNames()

  4. * @see #processCandidateBean

  5. * @see #handlerMethodsInitialized

  6. */

  7. protected void initHandlerMethods() {

  8. for (String beanName : getCandidateBeanNames()) {

  9. if (!beanName.startsWith(SCOPED_TARGET_NAME_PREFIX)) {

  10. processCandidateBean(beanName);

  11. }

  12. }

  13. handlerMethodsInitialized(getHandlerMethods());

  14. }

首先 getCandidateBeanNames() 方法,我们看它的定义

 
   
   
 
  1. /**

  2. * Determine the names of candidate beans in the application context.

  3. * @since 5.1

  4. * @see #setDetectHandlerMethodsInAncestorContexts

  5. * @see BeanFactoryUtils#beanNamesForTypeIncludingAncestors

  6. */

  7. protected String[] getCandidateBeanNames() {

  8. return (this.detectHandlerMethodsInAncestorContexts ?

  9. BeanFactoryUtils.beanNamesForTypeIncludingAncestors(obtainApplicationContext(), Object.class) :

  10. obtainApplicationContext().getBeanNamesForType(Object.class));

  11. }

  • 这个方法本质的目的就是为了从bean容器中,获取所有的bean,为什么是获取全部的 因为他是基于 Object.class类型来获取的类,故而是全部的类,但是这个方法其实深究起来,知识点很多,因为它涉及到Spring父子容器的知识点,所以我决定,后面花一篇文档单独去讲,这里你只需要知道,这个方法可以获取Spring容器里面所有的bean然后返回!

initHandlerMethods() 获取到所有的bean之后然后循环遍历,我们将目光聚集在循环体内部的 processCandidateBean方法

 
   
   
 
  1. protected void processCandidateBean(String beanName) {

  2. Class<?> beanType = null;

  3. try {

  4. beanType = obtainApplicationContext().getType(beanName);

  5. }

  6. catch (Throwable ex) {

  7. // An unresolvable bean type, probably from a lazy bean - let's ignore it.

  8. if (logger.isTraceEnabled()) {

  9. logger.trace("Could not resolve type for bean '" + beanName + "'", ex);

  10. }

  11. }

  12. if (beanType != null && isHandler(beanType)) {

  13. detectHandlerMethods(beanName);

  14. }

  15. }

  • beanType = obtainApplicationContext().getType(beanName);

  • 这个方法是基于bean名称获取该类的Class对象

  • isHandler(beanType)

  • 这个方法是判断该类是是加注了 Controller注解或者 RequestMapping

 
   
   
 
  1. @Override

  2. protected boolean isHandler(Class<?> beanType) {

  3. return (AnnotatedElementUtils.hasAnnotation(beanType, Controller.class) ||

  4. AnnotatedElementUtils.hasAnnotation(beanType, RequestMapping.class));

  5. }

  • detectHandlerMethods(Object handler)

 
   
   
 
  1. Map<Method, T> methods = MethodIntrospector.selectMethods(userType,(MethodIntrospector.MetadataLookup<T>) method -> {

  2. try {

  3. return getMappingForMethod(method, userType);

  4. }

  5. catch (Throwable ex) {

  6. throw new IllegalStateException("Invalid mapping on handler class [" +

  7. userType.getName() + "]: " + method, ex);

  8. }

  9. });

内部该段逻辑可以遍历某个类下所有的方法

  • getMappingForMethod(method, userType); 这个方法的内部做了什么呢?

    该方内部读取所有的映射方法的所有定义,具体的逻辑如下:

    当一个http请求来临时,SpringMVC究竟偷偷帮你做了什么?

  • 设置了该方法 的映射路径,方法对象,方法参数,设置的方法请求头,消费类型,可接受类型,映射名称等信息封装成RequestMappingInfo对象返回

  • getPathPrefix(handlerType);

    该方法是处理方法前缀,如果存在和前者方法级别的合并

  • 最终返回一个方法与方法描述信息的map映射集合( Map<Method,RequestMappingInfo>),循环遍历该集合!

  • Method invocableMethod = AopUtils.selectInvocableMethod(method, userType);找到该方法的代理方法!

  • registerHandlerMethod(handler, invocableMethod, mapping);注册该方法!

    • 我们深入该方法摒弃其他与本文无关的代码,会发现这么一段代码! 

    • 当一个http请求来临时,SpringMVC究竟偷偷帮你做了什么?


会发现,我们方法上标注的 url会和前面读取的该方法的定义绑定在一个叫做 urlLookup的方法里面,请大家记住这个方法,这个方法对我们理解SpringMvc的处理逻辑有大用处!


3.请求获取逻辑源码解析

现在,整个工程所有对应的@requestMapping的方法已经被缓存,以该方法为例子!

 
   
   
 
  1. @RestController

  2. public class TestController {


  3. @RequestMapping("test")

  4. public String test(){

  5. return "success";

  6. }

  7. }

现在在 urlLookup属性里面就有一个 key为 test,value为 test()方法详细定义的 k:v键值对:v:

我们看下下面这个类图, DispatcherServlet这个关键的中央类,实际上是Servlet的子类,熟悉Servlet的同学都知道,之前在做 Servlet开发的时候,所有的请求经过配置后都会被内部的doget和dopost方法拦截,至此SpringMvc为什么能够拦截URL也就不难分析了,拦截到url后,进入如下的流程调用链!

请求经由 org.springframework.web.servlet.FrameworkServlet#doGet捕获,委托给 org.springframework.web.servlet.FrameworkServlet#processRequest方法,最后在调用 org.springframework.web.servlet.DispatcherServlet#doService来处理真正的逻辑!

我们看一下这个方法里面的一些主要逻辑吧!

org.springframework.web.servlet.DispatcherServlet#doDispatch调用 org.springframework.web.servlet.DispatcherServlet#getHandler方法,再次调用 org.springframework.web.servlet.handler.AbstractHandlerMapping#getHandler经由 org.springframework.web.servlet.handler.AbstractHandlerMethodMapping#getHandlerInternal方法的 org.springframework.web.servlet.handler.AbstractHandlerMethodMapping#lookupHandlerMethodorg.springframework.web.servlet.handler.AbstractHandlerMethodMapping.MappingRegistry#getMappingsByUrl讲过这么长的调用链是不是懵了,此时我们终于看到了正主!

 
   
   
 
  1. /**

  2. * Return matches for the given URL path. Not thread-safe.

  3. * @see #acquireReadLock()

  4. */

  5. @Nullable

  6. public List<T> getMappingsByUrl(String urlPath) {

  7. return this.urlLookup.get(urlPath);

  8. }

这段代码是不是熟悉?这就是我们Spring容器在初始化的时候将url和方法定义放置的那个属性,现在Spring容器经由 DispatcherServlet拦截请求后又重新找到该方法,并且返回!

此时就完成了MVC流程图里面的HandlerMapping处理映射器的部分!

本章关于请求映射器的源码分析到这也就结束了,后续作者会将 处理适配器处理器, 视图解析器一一讲明白,其实后续的逻辑也就很简单了,简单来说,拿到方法后反射执行该方法(不一定,一般场景是这样),然后拿到返回值,判断是否有@responseBody注解,判断是否需要转换成json,在通过write写回到页面!大致流程就是这样,详细过程作者后续会写!

经过今天的流程分析,你能否基于Servlet写一个属于自己的SpringMvc呢?



如果你觉得这篇文章对你有所帮助,点击一个再看吧!嘿嘿!

以上是关于当一个http请求来临时,SpringMVC究竟偷偷帮你做了什么?的主要内容,如果未能解决你的问题,请参考以下文章

初级扫盲 一个HTTP请求究竟发生了什么?

初级扫盲 一个HTTP请求究竟发生了什么?

day02-REST和SpringMVC映射请求数据

SpringMVC-跨域请求

springMvc REST 请求和响应

springMVC流程