1. 程式人生 > >SpringMvc執行流程及三大元件作用

SpringMvc執行流程及三大元件作用

一:SpringMvc執行流程圖

一.SpringMVC中的元件及各個元件的作用?

1.DispatherServlet:前置控制器,負責接收並處理所有的web請求,根據handlerMapping找到具體的Controller,由controller完成具體的處理邏輯。

2.HandlerMapping(處理器對映):負責處理web請求和具體的Controller之間的對映關係匹配。

3.Controller(處理器):DispatherServlet的次級控制器,web請求的具體處理者。DispatherServlet獲得handlerMapping的返回結果後,呼叫controller的處理方法處理當前的業務請求,處理完成後返回ModelAndView物件。

4.ViewResolver( 檢視解析器):用來處理檢視名與具體的view例項之間的對映對應關係。根據ModelAndView中的檢視名查詢相應的View實現類,然後將查詢的結果返回給DispatcherServlet,DispatcherServlet最終會將ModelAndView中的模型資料交給返回的View處理最終的檢視渲染工作。

 

springmvc.xml配置提醒

<!-- 註解形式的處理器對映器 開啟原始碼發現已經過時 -->
<!--         <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"></bean> -->
<!-- 註解形式的處理器介面卡 開啟原始碼發現已經過時-->
<!--         <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"></bean> -->
<!-- 配置最新版的註解的處理器對映器 -->
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"></bean>
<!-- 配置最新版的註解的處理器介面卡 -->
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"></bean> 

但是上面的配置最新版的註解處理器對映器和處理器介面卡仍然不好,如果官方後續版本升級後續仍然會升級方法,這個類仍然或有可能過時,此時在專案中再修改就有些麻煩,此時我們可以只需要配置一個註解驅動就行了

    <!-- 註解驅動:
        作用:替我們自動配置最新版的註解的處理器對映器和處理器介面卡
     -->
    <mvc:annotation-driven></mvc:annotation-driven>

SpringMvc配置檢視解析器可配可不配

    <!-- 配置檢視解析器 
    作用:在controller中指定頁面路徑的時候就不用寫頁面的完整路徑名稱了,可以直接寫頁面去掉副檔名的名稱
    -->
            <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 真正的頁面路徑 =  字首 + 去掉字尾名的頁面名稱 + 字尾 -->
        <!-- 字首 -->
        <property name="prefix" value="/WEB-INF/jsp/"></property>
        <!-- 字尾 -->
        <property name="suffix" value=".jsp"></property>
    </bean>

下面給出完整的SpringMvc的核心配置檔案

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://code.alibabatech.com/schema/dubbo 
        http://code.alibabatech.com/schema/dubbo/dubbo.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.0.xsd">

        <!-- 配置@Controller註解掃描 -->
        <context:component-scan base-package="cn.itheima.controller"></context:component-scan>


    <!-- 註解驅動:
        作用:替我們自動配置最新版的註解的處理器對映器和處理器介面卡
     -->
    <mvc:annotation-driven></mvc:annotation-driven>


    <!-- 配置檢視解析器 
    作用:在controller中指定頁面路徑的時候就不用寫頁面的完整路徑名稱了,可以直接寫頁面去掉副檔名的名稱
    -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 真正的頁面路徑 =  字首 + 去掉字尾名的頁面名稱 + 字尾 -->
        <!-- 字首 -->
        <property name="prefix" value="/WEB-INF/jsp/"></property>
        <!-- 字尾 -->
        <property name="suffix" value=".jsp"></property>
    </bean>

</beans>