源碼跟蹤-springmvc(一):DispatcherSevlet

背景

日常coding中,要解決項(xiàng)目當(dāng)中遇到的問題榜田,難免會(huì)需要寫一個(gè)Converter益兄,aspect,或者擴(kuò)展一個(gè)MediaType等等箭券。這時(shí)候需要寫一個(gè)侵入性小的擴(kuò)展净捅,就需要了解源碼。我找了很多博客文章邦鲫,甚至看了《看透Spring MVC:源代碼分析與實(shí)踐》灸叼,寫的很好神汹,但是視角都是從整體框架出發(fā)庆捺,大而全,而我僅僅只是想解決當(dāng)前的問題屁魏,所以我以代碼跟蹤的視角記錄下這篇文章滔以,免得下次忘了還要重新跟蹤源碼,直接過來看就好了氓拼。

目的

從源碼中提取可能用到的工具你画,特別是標(biāo)注好注意事項(xiàng),下次擴(kuò)展可以查閱桃漾。

準(zhǔn)備

  1. springboot 2.1.1.RELEASE的demo
  2. pom依賴
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
  1. 示例類Employee坏匪,省略getter/setter
public class Employee {

    private Long id;
    private String name;
    private Integer age;
    private Date birthday;
    private Date createTime;
}
  1. Controller示例類
@RestController
@SpringBootApplication
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

    @PostMapping("/employee")
    public ResponseEntity<Employee> insert(Employee employee){
        employee.setId(1L);
        employee.setCreateTime(new Date());
        return ResponseEntity.ok(employee);
    }

}

斷點(diǎn)

如圖上斷點(diǎn)



請求參數(shù)如圖



ALT+左鍵點(diǎn)擊employee檢查參數(shù)

FrameworkServlet

  1. 我們在Debugger視圖的Frames里從底部往上,找到第一個(gè)屬于spring-webmvc包的類撬统,FrameworkServlet
  2. 通過查看源碼适滓,我們GET到第一個(gè)工具類,HttpMethod恋追,這個(gè)枚舉類包含了所有的http方法凭迹。
protected void service(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        HttpMethod httpMethod = HttpMethod.resolve(request.getMethod());
        if (httpMethod == HttpMethod.PATCH || httpMethod == null) {
            processRequest(request, response);
        }
        else {
            super.service(request, response);
        }
    }
  1. 在Frames視圖繼續(xù)向上推,可以發(fā)現(xiàn)從 HttpServlet 轉(zhuǎn)了一遭到了 FrameworkServlet.doPost 苦囱,然后來到了 FrameworkServlet.processRequest (刪減版)
protected final void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        // (1)
        LocaleContext previousLocaleContext = LocaleContextHolder.getLocaleContext();
        LocaleContext localeContext = buildLocaleContext(request);

        RequestAttributes previousAttributes = RequestContextHolder.getRequestAttributes();
        ServletRequestAttributes requestAttributes = buildRequestAttributes(request, response, previousAttributes);

        initContextHolders(request, localeContext, requestAttributes);

        try {
            // (2)
            doService(request, response);
        }
        catch (ServletException | IOException ex) {
        }
        catch (Throwable ex) {
        }

        finally {
            resetContextHolders(request, previousLocaleContext, previousAttributes);
            if (requestAttributes != null) {
                requestAttributes.requestCompleted();
            }
            // (3)
            publishRequestHandledEvent(request, response, startTime, failureCause);
        }
    }

看得出來嗅绸,做了三件事

  1. ContextHolder的設(shè)置和重置
    具體見:源碼跟蹤-springmvc(二):LocaleContextHolder和RequestContextHolder
  2. 執(zhí)行doService方法,也是真正執(zhí)行handler的方法撕彤。
  3. 執(zhí)行了publishRequestHandledEvent鱼鸠,代碼如下
private void publishRequestHandledEvent(HttpServletRequest request, HttpServletResponse response,
            long startTime, @Nullable Throwable failureCause) {

        if (this.publishEvents && this.webApplicationContext != null) {
            // Whether or not we succeeded, publish an event.
            long processingTime = System.currentTimeMillis() - startTime;
            this.webApplicationContext.publishEvent(
                    new ServletRequestHandledEvent(this,
                            request.getRequestURI(), request.getRemoteAddr(),
                            request.getMethod(), getServletConfig().getServletName(),
                            WebUtils.getSessionId(request), getUsernameForRequest(request),
                            processingTime, failureCause, response.getStatus()));
        }
    }

我們知道webApplicationContext繼承了ApplicationEventPublisher,擁有了發(fā)布事件的能力羹铅,我把發(fā)布的事件打印出來看一下

@EventListener
    public void printServletRequestHandledEvent(ServletRequestHandledEvent event){
        System.out.println(event);
    }

打印結(jié)果如下

ServletRequestHandledEvent: url=[/employee]; client=[127.0.0.1]; method=[POST]; servlet=[dispatcherServlet]; session=[null]; user=[null]; time=[52ms]; status=[OK]

如果發(fā)現(xiàn)打印的內(nèi)容滿足需要蚀狰,我們就不需要再寫個(gè)aop用來記錄日志啦。

DispatcherSevlet

  1. 現(xiàn)在進(jìn)入了DispatcherSevlet.doService方法(刪減版)
protected void doService(HttpServletRequest request, HttpServletResponse response) throws Exception {
        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(DEFAULT_STRATEGIES_PREFIX)) {
                    attributesSnapshot.put(attrName, request.getAttribute(attrName));
                }
            }
        }

        request.setAttribute(WEB_APPLICATION_CONTEXT_ATTRIBUTE, getWebApplicationContext());

        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);
                }
            }
        }
    }

這里有兩件事

  1. 如果滿足一定的條件(WebUtils.isIncludeRequest(request))睦裳,會(huì)把request的attributes做一份快照備份(attributesSnapshot)造锅,執(zhí)行完handler后還原備份(restoreAttributesAfterInclude(request, attributesSnapshot))。但是這里如果沒有成立廉邑,也就沒有執(zhí)行哥蔚,就先不管倒谷。但是很明顯,這個(gè)手法和上面的ContextHolder如出一轍糙箍。這時(shí)候其實(shí)能夠象出來渤愁,這樣做的目的是為了安全。
  2. 在request中設(shè)置了一堆的attributes深夯,有一個(gè)特別顯眼抖格,request.setAttribute(WEB_APPLICATION_CONTEXT_ATTRIBUTE, getWebApplicationContext());,這個(gè)時(shí)候我們又get到一個(gè)獲取webApplicationContext的辦法咕晋。
WebApplicationContext wac = (WebApplicationContext) request.getAttribute(DispatcherServlet.WEB_APPLICATION_CONTEXT_ATTRIBUTE);
  1. 進(jìn)入了DispatcherSevlet.doDispatch方法(刪減版)
protected void doDispatch(HttpServletRequest request, HttpServletResponse response) throws Exception {
// ....
        try {
//...
            try {
                // (1)
                mappedHandler = getHandler(processedRequest);
                if (mappedHandler == null || mappedHandler.getHandler() == null) {
                    noHandlerFound(processedRequest, response);
                    return;
                }

                // (2)
                HandlerAdapter ha = getHandlerAdapter(mappedHandler.getHandler());

                // (3)
                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;
                    }
                }

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

                // (5)
                mv = ha.handle(processedRequest, response, mappedHandler.getHandler());

                // (6)
                mappedHandler.applyPostHandle(processedRequest, response, mv);
            }
            catch (Exception ex) {
                dispatchException = ex;
            }
            catch (Throwable err) {
                dispatchException = new NestedServletException("Handler dispatch failed", err);
            }
            // (7)
            processDispatchResult(processedRequest, response, mappedHandler, mv, dispatchException);
        }
        catch (Exception ex) {
            // (7)
            triggerAfterCompletion(processedRequest, response, mappedHandler, ex);
        }
        catch (Throwable err) {
            // (7)
            triggerAfterCompletion(processedRequest, response, mappedHandler,
                    new NestedServletException("Handler processing failed", err));
        }
    }

這里非常重要了雹拄,對(duì)應(yīng)代碼中的注釋,解釋如下

  1. 獲取到mappedHandler掌呜,其實(shí)也就HandlerExecutionChain
    具體見源碼跟蹤-springmvc(三):RequestMappingHandlerMapping
  2. 獲取處理器適配器滓玖,就是RequestMappingHandlerAdapter
  3. http協(xié)議中的緩存實(shí)現(xiàn),可以看Spring mvc HTTP協(xié)議之緩存機(jī)制
  4. 分別調(diào)用mappedHandler中的三個(gè)攔截器的preHandle方法
  5. 執(zhí)行真正的handler
    具體見:源碼跟蹤-springmvc(四):RequestMappingHandlerAdapter
  6. 執(zhí)行攔截器的postHandle方法
  7. 執(zhí)行攔截器的afterCompletion方法
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末质蕉,一起剝皮案震驚了整個(gè)濱河市势篡,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌模暗,老刑警劉巖禁悠,帶你破解...
    沈念sama閱讀 212,816評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異兑宇,居然都是意外死亡碍侦,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門顾孽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來祝钢,“玉大人,你說我怎么就攤上這事若厚±褂ⅲ” “怎么了?”我有些...
    開封第一講書人閱讀 158,300評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵测秸,是天一觀的道長疤估。 經(jīng)常有香客問我,道長霎冯,這世上最難降的妖魔是什么铃拇? 我笑而不...
    開封第一講書人閱讀 56,780評(píng)論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮沈撞,結(jié)果婚禮上慷荔,老公的妹妹穿的比我還像新娘。我一直安慰自己缠俺,他們只是感情好显晶,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評(píng)論 6 385
  • 文/花漫 我一把揭開白布贷岸。 她就那樣靜靜地躺著,像睡著了一般磷雇。 火紅的嫁衣襯著肌膚如雪偿警。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評(píng)論 1 291
  • 那天唯笙,我揣著相機(jī)與錄音螟蒸,去河邊找鬼。 笑死崩掘,一個(gè)胖子當(dāng)著我的面吹牛七嫌,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播呢堰,決...
    沈念sama閱讀 39,151評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼抄瑟,長吁一口氣:“原來是場噩夢啊……” “哼凡泣!你這毒婦竟也來了枉疼?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,912評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤鞋拟,失蹤者是張志新(化名)和其女友劉穎骂维,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體贺纲,經(jīng)...
    沈念sama閱讀 44,355評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡航闺,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了猴誊。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片潦刃。...
    茶點(diǎn)故事閱讀 38,809評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖懈叹,靈堂內(nèi)的尸體忽然破棺而出乖杠,到底是詐尸還是另有隱情,我是刑警寧澤澄成,帶...
    沈念sama閱讀 34,504評(píng)論 4 334
  • 正文 年R本政府宣布胧洒,位于F島的核電站,受9級(jí)特大地震影響墨状,放射性物質(zhì)發(fā)生泄漏卫漫。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評(píng)論 3 317
  • 文/蒙蒙 一肾砂、第九天 我趴在偏房一處隱蔽的房頂上張望列赎。 院中可真熱鬧,春花似錦镐确、人聲如沸包吝。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽漏策。三九已至派哲,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間掺喻,已是汗流浹背芭届。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評(píng)論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留感耙,地道東北人褂乍。 一個(gè)月前我還...
    沈念sama閱讀 46,628評(píng)論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像即硼,于是被迫代替她去往敵國和親逃片。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容