SpringMVC源码关于ModelAndView

首先这个对象返回的数据中主要包含模型数据和逻辑视图名,整个流程图如下所示:

image.png

在之前讲到的doDispatch()方法中,获取到相关的HandlerExcutionChain和handlerAdapter对象,然后调用handlerAdapter的方法handler(),传入request,response,handler三个参数,之后调用handleInternal方法

    protected ModelAndView handleInternal(HttpServletRequest request, HttpServletResponse response, HandlerMethod handlerMethod)    throws Exception {
           this.checkRequest(request);
           ModelAndView mav;
           if (this.synchronizeOnSession) {
               HttpSession session = request.getSession(false);
               if (session != null) {
                   Object mutex = WebUtils.getSessionMutex(session);
                   synchronized(mutex) {
                       mav = this.invokeHandlerMethod(request, response, handlerMethod);
                   }
               } else {
                   mav = this.invokeHandlerMethod(request, response, handlerMethod);
               }
           } else {
               mav = this.invokeHandlerMethod(request, response, handlerMethod);
           }
    
           if (!response.containsHeader("Cache-Control")) {
               if (this.getSessionAttributesHandler(handlerMethod).hasSessionAttributes()) {
                   this.applyCacheSeconds(response, this.cacheSecondsForSessionAttributeHandlers);
               } else {
                   this.prepareResponse(response);
               }
           }
    
           return mav;
       }

这个方法会先检查一下request是否符合要求,然后再检测是否同步开启session,默认是false,然后这个方法中会调用invokeHandlerMethod()方法获取mav

    rotected ModelAndView invokeHandlerMethod(HttpServletRequest request, HttpServletResponse response, HandlerMethod handlerMethod)    hrows Exception {
           ServletWebRequest webRequest = new ServletWebRequest(request, response);

           Object result;
           try {
               WebDataBinderFactory binderFactory = this.getDataBinderFactory(handlerMethod);
               ModelFactory modelFactory = this.getModelFactory(handlerMethod, binderFactory);
               ServletInvocableHandlerMethod invocableMethod = this.createInvocableHandlerMethod(handlerMethod);
               invocableMethod.setHandlerMethodArgumentResolvers(this.argumentResolvers);
               invocableMethod.setHandlerMethodReturnValueHandlers(this.returnValueHandlers);
               invocableMethod.setDataBinderFactory(binderFactory);
               invocableMethod.setParameterNameDiscoverer(this.parameterNameDiscoverer);
               ModelAndViewContainer mavContainer = new ModelAndViewContainer();
               mavContainer.addAllAttributes(RequestContextUtils.getInputFlashMap(request));
               modelFactory.initModel(webRequest, mavContainer, invocableMethod);
               mavContainer.setIgnoreDefaultModelOnRedirect(this.ignoreDefaultModelOnRedirect);
               AsyncWebRequest asyncWebRequest = WebAsyncUtils.createAsyncWebRequest(request, response);
               asyncWebRequest.setTimeout(this.asyncRequestTimeout);
               WebAsyncManager asyncManager = WebAsyncUtils.getAsyncManager(request);
               asyncManager.setTaskExecutor(this.taskExecutor);
               asyncManager.setAsyncWebRequest(asyncWebRequest);
               asyncManager.registerCallableInterceptors(this.callableInterceptors);
               asyncManager.registerDeferredResultInterceptors(this.deferredResultInterceptors);
               if (asyncManager.hasConcurrentResult()) {
                   result = asyncManager.getConcurrentResult();
                   mavContainer = (ModelAndViewContainer)asyncManager.getConcurrentResultContext()[0];
                   asyncManager.clearConcurrentResult();
                   if (this.logger.isDebugEnabled()) {
                       this.logger.debug("Found concurrent result value [" + result + "]");
                   }

                   invocableMethod = invocableMethod.wrapConcurrentResult(result);
               }

               invocableMethod.invokeAndHandle(webRequest, mavContainer, new Object[0]);
               if (!asyncManager.isConcurrentHandlingStarted()) {
                   ModelAndView var15 = this.getModelAndView(mavContainer, modelFactory, webRequest);
                   return var15;
               }

               result = null;
           } finally {
               webRequest.requestCompleted();
           }

           return (ModelAndView)result;
       }

首先先创建web容器的request请求,然后进行一系列参数设置和相关的方法,到一个重要的方法,invokeAndHandler(webRequest,mavContainer,new Object[0]),该方法是用于获取view的

    public void invokeAndHandle(ServletWebRequest webRequest, ModelAndViewContainer mavContainer, Object... providedArgs) throws        Exception {
            Object returnValue = this.invokeForRequest(webRequest, mavContainer, providedArgs);
            this.setResponseStatus(webRequest);
            if (returnValue == null) {
                if (this.isRequestNotModified(webRequest) || this.getResponseStatus() != null || mavContainer.isRequestHandled()) {
                    mavContainer.setRequestHandled(true);
                    return;
                }
            } else if (StringUtils.hasText(this.getResponseStatusReason())) {
                mavContainer.setRequestHandled(true);
                return;
            }
    
            mavContainer.setRequestHandled(false);
    
            try {
                this.returnValueHandlers.handleReturnValue(returnValue, this.getReturnValueType(returnValue), mavContainer, webRequest);
            } catch (Exception var6) {
                if (this.logger.isTraceEnabled()) {
                    this.logger.trace(this.getReturnValueHandlingErrorMessage("Error handling return value", returnValue), var6);
                }
    
                throw var6;
            }
        }

invokeAndHandler方法中调用了invokeForRequest()方法获取执行请求方法的返回值

    public Object invokeForRequest(NativeWebRequest request, ModelAndViewContainer mavContainer, Object... providedArgs) throws Exception {
           Object[] args = this.getMethodArgumentValues(request, mavContainer, providedArgs);
           if (this.logger.isTraceEnabled()) {
               this.logger.trace("Invoking '" + ClassUtils.getQualifiedMethodName(this.getMethod(), this.getBeanType()) + "' with arguments " + Arrays.toString(args));
           }

           Object returnValue = this.doInvoke(args);
           if (this.logger.isTraceEnabled()) {
               this.logger.trace("Method [" + ClassUtils.getQualifiedMethodName(this.getMethod(), this.getBeanType()) + "] returned [" + returnValue + "]");
           }

           return returnValue;
       }

首先先获取request请求的参数,输出成object数组,然后向doInvoke()方法传入该数组作为参数

    protected Object doInvoke(Object... args) throws Exception {
           ReflectionUtils.makeAccessible(this.getBridgedMethod());

           try {
               return this.getBridgedMethod().invoke(this.getBean(), args);
           } catch (IllegalArgumentException var5) {
               this.assertTargetBean(this.getBridgedMethod(), this.getBean(), args);
               String text = var5.getMessage() != null ? var5.getMessage() : "Illegal argument";
               throw new IllegalStateException(this.getInvocationErrorMessage(text, args), var5);
           } catch (InvocationTargetException var6) {
               Throwable targetException = var6.getTargetException();
               if (targetException instanceof RuntimeException) {
                   throw (RuntimeException)targetException;
               } else if (targetException instanceof Error) {
                   throw (Error)targetException;
               } else if (targetException instanceof Exception) {
                   throw (Exception)targetException;
               } else {
                   String text = this.getInvocationErrorMessage("Failed to invoke handler method", args);
                   throw new IllegalStateException(text, targetException);
               }
           }
       }

doInvoke()方法中重要的是getBridgeMethod().invoke(getBean(),args)方法的调用
getBridgeMethod()是获取Controller的执行请求的方法,然后通过反射机制,获取执行请求的返回值

这边可以思考下,为什么使用getBridgeMethod(),而不直接使用getMethod(),两个方法的返回值也是一样的

获取到方法的返回值,即view="index"后,一路返回到上一层,到invokeHandlerMethod()方法,执行该方法中的下一个方法getModelAndView(mavContainer,modelFactory,webRequest)

    private ModelAndView getModelAndView(ModelAndViewContainer mavContainer, ModelFactory modelFactory, NativeWebRequest webRequest)        throws Exception {
            modelFactory.updateModel(webRequest, mavContainer);
            if (mavContainer.isRequestHandled()) {
                return null;
            } else {
                ModelMap model = mavContainer.getModel();
                ModelAndView mav = new ModelAndView(mavContainer.getViewName(), model, mavContainer.getStatus());
                if (!mavContainer.isViewReference()) {
                    mav.setView((View)mavContainer.getView());
                }
    
                if (model instanceof RedirectAttributes) {
                    Map<String, ?> flashAttributes = ((RedirectAttributes)model).getFlashAttributes();
                    HttpServletRequest request = (HttpServletRequest)webRequest.getNativeRequest(HttpServletRequest.class);
                    RequestContextUtils.getOutputFlashMap(request).putAll(flashAttributes);
                }
    
                return mav;
            }
        }       

在这段代码里边,我们能看见,每个modelAndView都是通过代码自己new出来的,传入了三个参数,viewName,model和status,这三个参数都是通过mavContainer来获取的
第一个参数,viewName
mavContainer.getViewName()方法返回viewName,如果view是String类型的实例,那么返回view,否则返回null

第二个参数,model
mavContainer.getModel(), 得到defaultModel或者是redirectModel,之前在invokeHandlerMethod创建modelFactory的时候就设置了两个参数的值

第三个参数status
mavContainer.getStatus(),该方法返回的值的类型是HttpStatus,也就是状态码

最后返回modelAndView对象

参考链接:
https://blog.csdn.net/qq924862077/article/details/53944721
https://blog.csdn.net/u010233323/article/details/52515773

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352

推荐阅读更多精彩内容