尚硅谷SpringMVC教程笔记

一、SpringMVC简介

1、什么是MVC

MVC是一种软件架构的思想,将软件按照模型、试图、控制器来划分

M:Model 模型层,指工程中的JavaBean,作用是处理数据。(不是简单的实体类)

JavaBean分为两类:

  • 一类称为实体类Bean:专门存储业务数据的,如Students,User等
  • 一类称为业务处理Bean:指Service或Dao对象,专门用于处理业务逻辑和数据访问。

V:View,视图层,指工程中的html或jsp等页面,作用是与用户进行交互,展示数据

C:Controller,控制层,指工程中的Servlet,作用是接收请求和响应浏览器

MVC工作流程:

用户通过视图层发送请求到服务器,在服务器中被Controller接收,Controller调用相应 的Model层处理请求,处理完毕将结果返回Controller,Controller再根据请求处理的结果找到相应的View视图,渲染数据后最终响应给浏览器

2、什么是SpringMVC

SpringMVC是Spring的一个后续产品,是Spring的一个子项目

注:三层架构分为表述层(或表示层)、业务逻辑层、数据访问层,表述层表示前台页面和后台Servlet

3、SpringMVC的特点

  • Spring家族原生产品,与IOC容器等基础设施无缝对接
  • 基于原生Servlet通过强大的前端控制器DispatchServlet,对请求和响应进行统一处理
  • 表述层各细分领域需要解决的问题全方位覆盖,提供全面解决方案
  • **代码清新简洁,**大幅提高开发效率
  • 内部组件化程度高,可插拔式组件即插即用,想要什么功能配置相应组件即可
  • **性能卓越,**尤其适合现代大型、超大型互联网项目要求

二、搭建基础环境

1、创建Maven工程

  • 添加web模块
  • 打包方式改成war
  • 扩展配置方式

2、配置web.xml

注册SpringMVC的前端控制器DispatcherServlet

  • 默认配置方式

    此配置作用下,SpringMVC的配置文件默认位于WEB-INF下,默认名称为-servlet.xml。例如,以下配置所对应的配置文件位于WEB-INF下,文件名为DispatcherServlet-servlet.xml

    <!--配置前端控制器-->
    <servlet>
        <servlet-name>DispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>DispatcherServlet</servlet-name>
        <!--设置springMvc的核心控制器所能处理的请求的请求路径
        “ / ”所匹配的请求可以是/login或.html或.js或.css方式的请求路径但是“ / ”不能匹配-jsp请求路径的请求-->
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    
  • 扩展配置方式

    可通过init-param标签设置SpringMVC配置文件的位置和名称,通过load-on-startup标签设置SpringMVC前端控制器DispatcherServlet的初始化时间

    <!--配置前端控制器-->
    <servlet>
        <servlet-name>DispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!--通过初始化参数指定SpringMVC配置文件的名称和路径-->
        <init-param>
            <!--contextConfigLocation为固定值-->
            <param-name>contextConfigLocation</param-name>
            <!--使用classpath:表示从类路径查找配置文件,例如maven工程中的src/main/resources-->
            <param-value>classpath:springmvc.xml</param-value>
        </init-param>
        <!--作为框架的核心组件,在启动过程中有大量的初始化操怍要做而这些操作放在第一次请求时才执行会严重影响访问速度
            因此需要通过此标签将启动控制DispatcherServlet的初始化时间提前到服务器启动时-->
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>DispatcherServlet</servlet-name>
        <!--设置springMvc的核心控制器所能处理的请求的请求路径
        “ / ”所匹配的请求可以是/login或.html或.js或.css方式的请求路径但是“ / ”不能匹配-jsp请求路径的请求-->
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    

    注:
    标签中使用/和/*的区别:
    /所匹配的请求可以是/login或.html或.js或.css方式的请求路径,但是/不能匹配.jsp请求路径的请求因此就可以避免在访问jsp页面时,该请求被DispatcherServlet处理,从而找不到相应的页面
    /*则能够匹配所有请求,例如在使用过滤器时,若需要对所有请求进行过滤,就需要使用/*的写法

3、创建请求控制器

由于前端控制器对浏览器发送的请求进行了统一的处理,但是具体的请求有不同的处理过程,因此需要创建处理具体请求的类,即请求控制器

请求控制器中每一个处理请求的方法成为控制器方法

因为SpringMVC的控制器由一个POJ]O(普通的Java类)担任,因此需要通过@Controller注解将其标识为一个控制层组件,交给Spring的loC容器管理,此时SpringMVC才能够识别控制器的存在

4、创建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:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--开启扫描组件(自动扫描包)-->
    <context:component-scan base-package="com.atguigu.mvc.controller"/>

    <!--配置Thymeleaf视图解析器-->
    <bean id="viewResolver" class="org.thymeleaf.spring5.view.ThymeleafViewResolver">
        <property name="order" value="1"/>
        <property name="characterEncoding" value="UTF-8"/>
        <property name="templateEngine">
            <bean class="org.thymeleaf.spring5.SpringTemplateEngine">
                <property name="templateResolver">
                    <bean class="org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver">
                        <!--视图前缀-->
                        <property name="prefix" value="/WEB-INF/templates"/>
                        <!--视图后缀-->
                        <property name="suffix" value=".html"/>
                        <property name="templateMode" value="HTML5"/>
                        <property name="characterEncoding" value="UTF-8"/>
                    </bean>
                </property>
            </bean>
        </property>
    </bean>

    <!--处理静态资源,例如html、js、css、 jpg。若只设置该标签,则只能访问静态资源,其他请求则无法访问
    此时必须设置<mvc:annotation-driven />解决问题-->
    <mvc:default-servlet-handler/>

    <!--开启mvc注解驱动-->
    <mvc:annotation-driven>
        <mvc:message-converters>
            <!--处理响应中文内容编码-->
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <property name="defaultCharset" value="UTF-8"/>
                <property name="supportedMediaTypes">
                    <list>
                        <value>text/html</value>
                        <value>application/json</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>

</beans>

5、测试HelloWord!

。。。。

6、总结

浏览器发送请求,若请求地址符合前端控制器的url-pattern,该请求就会被前端控制器DispatcherServlet处理,前端控制器会读取SpringMVC的核心配置文件,通过扫描组件找到控制器,将请求地址和控制器中
@RequestMapping注解的value属性值进行匹配,若匹配成功,该注解所标识的控制器方法就是处理请求的方法。处理请求的方法需要返回一个字符串类型的视图名称,该视图名称会被视图解析器解析,加上前缀和后缀组成视图的路径,通过Thymeleaf对视图进行渲染,最终转发到视图所对应页面工

三、@RequestMapping注解

1、 @RequestMapping注解的功能

从注解名称上我们可以看到,@RequestMapping主解的作用就是将请求和处理请求的控制器方法关联起来,建立映射关系。

SpringMVC接收到指定的请求,就会来找到在映射关系中对应的控制器方法来处理这个请求。

2、@RequestMapping注解的位置

@RequestMapping标识一个类:设置映射请求的请求路径的初始信息

@RequestMapping标识一个方法:设置映射请求请求路径的具体信息

3、@RequestMapping注解的value属性

@RequestMapping注解的value属性通过请求的请求地址匹配请求映射

@RequestMapping注解的value属性是一个字符串类型的数组,表示该请求映射能够匹配多个请求地址所对应的请求

@RequestMapping注解的value属性必须设置,至少通过请求地址匹配请求映射

@RequestMapping(value = {"/index", "/testRequestMapping"})
public String testRequestMapping() {
    return "index";
}

4、@RequestMapping注解的method属性

@RequestMapping注解的method属性通过请求的请求方式(get或post)匹配请求映射

@RequestMapping注解的method属性是一个RequestMethod类型的数组,表示该请求映射能够匹配多种请求方式的请求

若当前请求的请求地址满足请求映射的value属性,但是请求方式不满足method属性,则浏览器报错405:Request method ‘POST’ not supported

@RequestMapping(
        value = {"/index", "/testRequestMapping"},
        method = {RequestMethod.GET, RequestMethod.POST}
)
public String testRequestMapping() {
    return "index";
}

注:

1、对于处理指定请求方式的控制器方法,SpringMVC中提供了@RequestMapping的派生注解

处理get请求 --------@GetMapping

处理post请求 --------@PostMapping

处理put请求 --------@PutMapping

处理delete请求 --------@DeleteMapping

2、常用的请求方式有get,post,put,delete

但是目前浏览器只支持get和post,若from表单提交时,为method设置了其他请求方式的字符串(put或delete),则默认按照get处理

若要发送put和delete请求,则需要通过spring提供的过滤器HiddenHttpMethodFilter。

5、@RequestMapping注解的params属性(了解)

@RequestMapping注解的params属性通过请求的请求参数匹配请求映射

@RequestMapping注解的params属性是一个字符串类型的数组,可以通过四种表达式设置请求参数和请求映射的匹配关系

“param”:要求请求映射所匹配的请求必须携带param请求参数

“!param”:要求请求映射所匹配的请求必须不能携带param请求参数

“param=value”:要求请求映射所匹配的请求必须携带param请求参数且param=value

"param!=value”:要求请求映射所匹配的请求必须携带param请求参数但是paraml=value

6、@RequestMapping注解的headers属性(了解)

@RequestMapping注解的headers属性通过请求的请求头信息匹配请求映射

@RequestMapping注解的headers属性是一个字符串类型的数组,可以通过四种表达式设置请求头信息和请求映射的匹配关系

“header”:要求请求映射所匹配的请求必须携带header请求头信息

“!header”:要求请求映射所匹配的请求必须不能携带header请求头信息

“header=value”:要求请求映射所匹配的请求必须携带header请求头信息且header=value

“header!=value”:要求请求映射所匹配的请求必须携带header请求头信息且header!=value

若当前请求满足@RequestMapping注解的value和method属性,但是不满足headers属性,此时页面显示404错误,即资源未找到

7、SpringMVC支持ant风格的路径

?:表示任意的单个字符

*:表示任意的0个或多个字符

**:表示任意的一层或多层目录

注意:在使用**时,只能使用/**/xxx的方式

8、SpringMVC支持路径中的占位符(重点)

原始方式: /deleteUser?id=1

rest方式: /deleteUser/1

SpringMVC路径中的占位符常用于restful风格中,当请求路径中将某些数据通过路径的方式传输到服务器中,就可以在相应的@RequestMapping注解的value属性中通过占位符{xxx}表示传输的数据,在通过@PathVariable注解,将占位符所表示的数据赋值给控制器方法的形参

@RequestMapping("/testRest/{id}/{username}/getUserById")
public String testRest(@PathVariable("id") String id, @PathVariable("username") String userName){
    System.out.println(id + userName);
    return "index";
}

访问路径:/testRest/1/mingzi/getUserById

输出:1mingzi

四、SpringMVC获取请求参数

1、通过ServletAPI获取

将HttpServletRequest作为控制器方法的形参,此时HttpServletRequest类型的参数表示封装了当前请求的请求报文的对象

@RequestMapping("/testParam")
public String testParam(HttpServletRequest request){
    String username = request.getParameter("username");
    return "index";
}

2、通过控制器方法的形参获取请求参数

在控制器方法的形参位置,设置和请求参数同名的形参,当浏览器发送请求,匹配到请求映射时,在DispatcherServlet中就会将请求参数赋值给相应的形参

@RequestMapping("/testParam")
public String testParam(String userName, String[] aihao){
    return "index";
}

注:

若请求所传输的请求参数中有多个同名的请求参数,此时可以在控制器方法的形参中设置字符串数组或者字符串类型的形参接收此请求参数

若使用字符串数组类型的形参,此参数的数组中包含了每一个数据

若使用字符串类型的形参,此参数的值为每个数据中间使用逗号拼接的结果

3、@RequestParam

@RequestParam是将请求参数和控制器方法的形参创建映射关系

@RequestParam注解一共有三个属性:

value:指定为形参赋值的请求参数的参数名

required:设置是否必须传输此请求参数,默认值为true

若设置为true时,则当前请求必须传输value所指定的请求参数,若没有传输该请求参数,且没有设置defaultValue属性,则页面报错400:Required String parameter ‘xxx’ is not present;若设置为false,则当前请求不是必须传输value所指定的请求参数,若没有传输,则注解所标识的形参的值为null

defaultValue:不管required属性值为true或false,当value所指定的请求参数没有传输时,则使用默认值为形参赋值

@RequestMapping("/testParam")
public String testParam(
    @RequestParam(
        value = "user_name", 
        required = false, 
        defaultValue = "zhangsan"
    ) 
    String userName) {
    return "index";
}

4、@RequestHeader

@RequestHeader是将请求头信息和控制器方法的形参创建映射关系

@RequestHeader注解一共有三个属性: value、required、defaultValue,用法同@RequestParam

5、@CookieValue

@CookieValue是将cookie数据和控制器方法的形参创建映射关系

@CookieValue注解一共有三个属性: value、required、defaultValue,用法同@RequestParam

6、通过POJO获取请求参数

可以在控制器方法的形参位置设置一个实体类类型的形参,此时若浏览器传输的请求参数的参数名和实体类中的属性名一致,那么请求参数就会为此属性赋值

7、解决获取请求参数乱码问题

<filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>UTF-8</param-value>
    </init-param>
    <init-param>
        <param-name>forceResponseEncoding</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

五、域对象共享数据

1、使用servletAPI向request域对象共享数据

@RequestMapping("/testServletAPI")
public String testServletAPI(HttpServletRequest request){
    request.setAttribute("testScope", "ServletAPI");
    return "index";
}

2、使用ModelAndView域对象共享数据

@RequestMapping("/testModelAndView")
public ModelAndView testModelAndView(){
    /*
    ModelAndView有Model和view的功能Model主要用于向请求域共享
    view主要用于设置视图,实现页面跳转
     */
    ModelAndView view = new ModelAndView();
    // 向请求域共享数据
    view.addObject("testScope", "testModelAnd
    // 设置视图,实现页面跳转
    view.setViewName("success");
    return view;
}

3、使用Model向request域对象共享数据

@RequestMapping("/testModel")
public String testModel(Model model){
    model.addAttribute("testScope", "testModel");
    return "success";
}

4、使用Map向request域对象共享数据

@RequestMapping("/testMap")
public String testMap(Map model){
    model.put("testScope", "testMap");
    return "success";
}

5、使用ModelMap向request域对象共享数据

@RequestMapping("/testModelMap")
public String testModelMap(ModelMap model){
    model.put("testScope", "testModelMap");
    return "success";
}

6、Model、ModelMap、Map的关系

Model、ModelMap、Map类型的参数其实本质上都是BindingAwareModelMap类型的

public interface Model {}
public class ModelMap extends LinkedHashMap<String, Object> {}
public class ExtendedModelMap extends ModelMap implements Model {}
public class BindingAwareModelMap extends ExtendedModelMap {}

7、向session域共享数据

@RequestMapping("/testHttpSession")
public String testServletAPI(HttpSession session){
    session.setAttribute("testScope", "testHttpSession");
    return "success";
}

8、向application域共享数据

@RequestMapping("/testServletContext")
public String testServletContext(HttpSession session){
    ServletContext servletContext = session.getServletContext();
    servletContext.setAttribute("testScope", "testServletContext");
    return "success";
}

六、SpringMVC的视图

SpringMVC中的视图是View接口,视图的作用渲染数据,将模型Model中的数据展示给用户

SpringMVC视图的种类很多,默认有转发视图和重定向视图

当工程引入jstl的依赖,转发视图会自动转换为JstlView

若使用的视图技术为Thymeleaf,在SpringMVC的配置文件中配置了Thymeleaf的视图解析器,由此视图解析器解析之后所得到的是ThymeleafView

1、ThymeleafView

当控制器方法中所设置的视图名称没有任何前缀时,此时的视图名称会被SpringMVC配置文件中所配置的视图解析器解析,视图名称拼接视图前缀和视图后缀所得到的最终路径,会通过转发的方式实现跳转

@RequestMapping("/index")
public String index() {
    return "index";
}
View view;	// ThymeleafView@11421
String viewName = mv.getViewName();//index
if (viewName != null) {
	// We need to resolve the view name.
	view = resolveViewName(viewName, mv.getModelInternal(), locale, request);//ModelAndView [view="index"; model={}]
	if (view == null) {
		throw new ServletException("Could not resolve view with name '" + mv.getViewName() +
				"' in servlet with name '" + getServletName() + "'");
	}
}

2、转发视图

SpringMVC中默认的转发视图是InternalResourceView

SpringMVC中创建转发视图的情况:

当控制器方法中所设置的视图名称以"forward:“为前缀时,创建InternalResourceView视图,此时的视图名称不会被SpringMVC配置文件中所配置的视图解析器解析,而是会将前缀”"forward:"去掉,剩余部分作为最终路径通过转发的方式实现跳转

例如"forward:/",“forward:/employee”

@RequestMapping("/testForward")
public String testForward() {
    return "forward:/index";
}
View view;	// org.springframework.web.servlet.view.InternalResourceView: [InternalResourceView]; URL [/index]
String viewName = mv.getViewName();//forward:/index
if (viewName != null) {
	// We need to resolve the view name.
	view = resolveViewName(viewName, mv.getModelInternal(), locale, request);//ModelAndView [view="forward:/index"; model={}]
	if (view == null) {
		throw new ServletException("Could not resolve view with name '" + mv.getViewName() +
				"' in servlet with name '" + getServletName() + "'");
	}
}

3、重定向视图

SpringMVC中默认的重定向视图是RedirectView

当控制器方法中所设置的视图名称以"redirect:"为前缀时,创建RedirectView视图,此时的视图名称不会被SpringMVC配置文件中所配置的视图解析器解析,而是会将前缀"redirect."去掉,剩余部分作为最终路径通过重定向的方式实现跳转

例女"“redirect:/” , “redirect:/employee”

@RequestMapping("/testRedirect")
public String testRedirect() {
    return "redirect:/index";
}
View view;	// org.springframework.web.servlet.view.RedirectView: name 'redirect:'; URL [/index]
String viewName = mv.getViewName();//redirect:/index
if (viewName != null) {
	// We need to resolve the view name.
	view = resolveViewName(viewName, mv.getModelInternal(), locale, request);//ModelAndView [view="redirect:/index"; model={}]
	if (view == null) {
		throw new ServletException("Could not resolve view with name '" + mv.getViewName() +
				"' in servlet with name '" + getServletName() + "'");
	}
}

4、视图控制器view-controller

当控制器方法中,仅仅用来实现页面跳转,即只需要设置视图名称时,可以将处理器方法使用view-controller标签进行表示

<!--
    path:处理请求的地址
    view-name:设置请求地址所对应的视图名称
-->
<mvc:view-controller path="/" view-name="index"/>

注:

当SpringMVC中设置任何一个view-controller时,其他控制器中的请求映射将全部失效,此时需要爱SpringMVC的核心配置文件中,设置开启mvc注解驱动的标签:

<mvc:annotation-driven/>

七、RESTFul

1、RESTFul简介

REST: Representational State Transfer,表现层资源状态转移。

  • 资源

    资源是一种看待服务器的方式,即,将服务器看作是由很多离散的资源组成。每个资源是服务器上一个可命名的抽象概念。因为资源是一个抽象的概念,所以它不仅仅能代表服务器文件系统中的一个文件、数据库中的一张表等等具体的东西,可以将资源设计的要多抽象有多抽象,只要想象力允许而且客户端应用开发者能够理解。与面向对象设计类似,资源是以名词为核心来组织的,首先关注的是名词。一个资源可以由一个或多个URI来标识。URI既是资源的名称,也是资源在Web上的地址。对某个资源感兴趣的客户端应用,可以通过资源的URI与其进行交互。

  • 资源的表达

    资源的表述是一段对于资源在某个特定时刻的状态的描述。可以在客户端-服务器端之间转移(交换)。资源的表述可以有多种格式,例如HTML/XML/JSON/纯文本/图片/视频/音频等等。资源的表述格式可以通过协商机制来确定。请求-响应方向的表述通常使用不同的格式。

  • 状态转移

    状态转移说的是:在客户端和服务器端之间转移(transfer)代表资源状态的表述。通过转移和操作资源的表述,来间接实现操作资源的目的。

2、RESTFull的实现

具体说。就是HTTP协议里面,四个表示操作方式的动词;GET.、POST、PUT、DELETE。

它们分别对应四种基本操作:GET用来获取资源,POST用来新建资源,PUT用来更新资源,DELETE用来删除资源。

REST风格提倡URL地址使用统一的风格设计,从前到后各个单词使用斜杠分开,不使用问号键值对方式携带请求参数,而是将要发送给服务器的数据作为URL地址的一部分,以保证整体风格的一致性。

操作传统方式REST风格
查询操作getUserById?id=1user/1–>get请求方式
保存操作saveUseruser–>post请求方式
删除操作deleteUser?id=1user/1–>delete请求方式
更新操作updateUseruser–>put请求方式

3、HiddenHttpMethodFilter

在web.xml里配置HiddenHttpMethodFilter,让Controller中可以使用PUT和DELETE方法**(必须放在CharacterEncodingFilter后面,因为HiddenHttpMethodFilter会获取request中的参数,如果写在前面CharacterEncodingFilter将失效)**

<!--配置HiddenHttpMethodFilter-->
<filter>
    <filter-name>HiddenHttpMethodFilter</filter-name>
    <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>HiddenHttpMethodFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>
// 源码前端的method必须是post,并且加上一个name是_method。值是真正想要请求的method
public static final String DEFAULT_METHOD_PARAM = "_method";
private String methodParam = DEFAULT_METHOD_PARAM;
@Override
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
		throws ServletException, IOException {
	HttpServletRequest requestToUse = request;
	if ("POST".equals(request.getMethod()) && request.getAttribute(WebUtils.ERROR_EXCEPTION_ATTRIBUTE) == null) {
		String paramValue = request.getParameter(this.methodParam);
		if (StringUtils.hasLength(paramValue)) {
			String method = paramValue.toUpperCase(Locale.ENGLISH);
			if (ALLOWED_METHODS.contains(method)) {
				requestToUse = new HttpMethodRequestWrapper(request, method);
			}
		}
	}
	filterChain.doFilter(requestToUse, response);
}

八、HttpMessageConerter

HttpMessageConverter,报文信息转换器,将请求报文转换为Java对象,或将Java对象转换为响应报文

HttpMessageConverter提供了两个注解和两个类型:@RequestBody,@ResponseBody,RequestEntity,ResponseEntity

1、@RequestBody

@RequestBody可以获取请求体,需要在控制器方法设置一个形参,使用@RequestBody进行标识,当前请求的请求体就会为当前注解所标识的形参赋值

<form th:action="@{/testRequestBody}" method="post">
    <input name="userName"/>
    <input name="passWord"/>
    <input type="submit" />
</form>
@PostMapping("/testRequestBody")
public String testRequestBody(@RequestBody String requestBody){
    System.out.println(requestBody);
    return "success";
}

输出结果:userName=admin&passWord=123

2、RequestEntity

RequestEntity封装请求报文的一种类型,需要在控制器方法的形参中设置该类型的形参,当前请求的请求报文就
会赋值给该形参,可以通过getHeaders()获取请求头信息,通过getBody()获取请求体信息

<form th:action="@{/testRequestEntity}" method="post">
    <input name="userName"/>
    <input name="passWord"/>
    <input type="submit" />
</form>
@RequestMapping("/testRequestEntity")
public String testRequestEntity(RequestEntity<String> requestEntity){
    System.out.println("请求头:" + requestEntity.getHeaders());
    System.out.println("请求体:" + requestEntity.getBody());
    return "success";
}

输出结果:

请求头:[host:“localhost:8080”, connection:“keep-alive”, content-length:“27”, cache-control:“max-age=0”, sec-ch-ua:““Google Chrome”;v=“107”, “Chromium”;v=“107”, “Not=A?Brand”;v=“24"”, sec-ch-ua-mobile:”?0", sec-ch-ua-platform:““Windows””, upgrade-insecure-requests:“1”, origin:“http://localhost:8080”, user-agent:“Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36”, accept:“text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.9”, sec-fetch-site:“same-origin”, sec-fetch-mode:“navigate”, sec-fetch-user:“?1”, sec-fetch-dest:“document”, referer:“http://localhost:8080/springmvc/”, accept-encoding:“gzip, deflate, br”, accept-language:“zh-CN,zh;q=0.9,zh-TW;q=0.8,en-US;q=0.7,en;q=0.6”, cookie:“Idea-5047c8c9=4c905524-bb98-420f-98bf-aa89eda1ef22”, Content-Type:“application/x-www-form-urlencoded;charset=UTF-8”]
请求体:userName=admin&passWord=123

3、@ResponseBody

@ResponseBody用于标识一个控制器方法,可以将该方法的返回值直接作为响应报文的响应体响应到浏览器

@RequestMapping("/testResponseBody")
@ResponseBody
public String testResponseBody(){
    return "testResponseBody";
}

结果:浏览器页面显示 testResponseBody

4、SpringMVC处理json

@ResponseBody处理json的步骤:

  • 导入jackson的依赖

    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-databind</artifactId>
        <version>2.12.1</version>
    </dependency>
    
  • 在SpringMVC的核心配置文件中开启mvc的注解驱动,此时在HandlerAdaptor中会自动装配一个消息转换器;Mappinglackson2HttpMessageConverter,可以将响应到浏览器的Java对象转换为son格式的字符串

    <mvc:annotation-driven />
    
  • 在处理器方法上使用@ResponseBody注解进行标识

  • 将Java对象直接作为控制器方法的返回值返回,就会自动转换为Json格式的字符串

    @RequestMapping("/testResponseUser ")
    @ResponseBody
    public User testResponseuser (){
        return new User (1001, "admin","123456",23,"男");
    }
    

    浏览器的页面展示的结果:

    {“id”:1001, “username”:“admin” ,“password”:“123456”,“age”:23,"sex"∵:“男”}

6、ResponsEntity

可用于文件下载。

九、文件上传和下载

1、文件下载

使用ResponsEntity实现文件下载功能。

@RequestMapping("/testDown")
public ResponseEntity<byte[]> testResponseEntity(HttpSession session) throws IOException {
    //获取servletContext对象
    ServletContext servletcontext = session.getServletContext();
    //获取服务器中文件的真实路径
    String realPath = servletcontext.getRealPath("/static/img/1.jpg");//创建输入流
    InputStream is = new FileInputStream(realPath);//创建字节数组
    byte[] bytes = new byte[is.available()];//将流读到字节数组中
    is.read(bytes);
    //创建HttpHeaders对象设置响应头信息
    MultiValueMap<String, String> headers = new HttpHeaders();//设置要下载方式以及下载文件的名字
    headers.add("Content-Disposition", "attachment;filename=1.jpg");//设置响应状态码
    HttpStatus statusCode = HttpStatus.OK;//创建ResponseEntity对象
    ResponseEntity<byte[]> responseEntity = new ResponseEntity(bytes, headers, statusCode);
    //关闭输入流is.close();
    return responseEntity;
}

2、文件上传

文件上传要求form表单的请求方式必须为post,并且添加属性enctype=“multipart/form-data”

SpringMVC中将上传的文件封装到MultipartFile对象中,通过此对象可以获取文件相关信息

上传步骤:

  • 添加依赖

    <dependency>
        <groupId>commons-fileupload</groupId>
        <artifactId>commons-fileupload</artifactId>
        <version>1.3.1</version>
    </dependency>
    
  • 在SpringMVC的配置文件中添加配置

        <!--配置文件上传解析器,将上传的文件封装成MultipartFile。id必须是(multipartResolver)-->
        <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
    
        </bean>
    
  • 上传代码

    @RequestMapping("/testUp")
    public String testUp(MultipartFile photo, String userName, HttpSession session) throws IOException {
        /*System.out.println(photo.getName());
        System.out.println(photo.getOriginalFilename());
        System.out.println(userName);*/
        String fileName = photo.getOriginalFilename();
        ServletContext servletcontext = session.getServletContext();
        String photoPath = servletcontext.getRealPath("photo");
        File file = new File(photoPath);
        //判断photopath所对应路径是否存在
        if (!file.exists()) {
            //若不存在,则创建目录
            file.mkdir();
        }
        String finalPath = photoPath + File.separator + fileName;
        photo.transferTo(new File(finalPath));
        return "success";
    }
    

十、拦截器

1、拦截器的配置

SpringMVC中的拦截器用于拦截控制器方法的执行

SpringMVC中的拦截器需要实现HandlerInterceptor或者继承HandlerInterceptorAdapter类

SpringMVC的拦截器必须在SpringMVC的配置文件中进行配置:

<!--配置拦截器-->
<mvc:interceptors>
    <!--<bean id="firstInterceptor" class="com.atguigu.mvc.interceptor.FirstInterceptor"/>-->
    <!--<ref bean="firstInterceptor"/>-->
    <mvc:interceptor>
        <mvc:mapping path="/*"/>
        <mvc:exclude-mapping path="/"/>
        <!--这里的bean需要在类上面加上@Component注解,或者在<mvc:interceptors>外创建bean-->
        <ref bean="firstInterceptor" />
    </mvc:interceptor>
</mvc:interceptors>

2、拦截器的三个抽象方法

SpringMVC中的拦截器有三个抽象方法;

preHandle:控制器方法执行之前执行preHandle(),其boolean类型的返回值表示是否拦截或放行,返回true为放行,即调用控制器方法;返回false表示拦截,即不调用控制器方法

postHandle:控制器方法执行之后执行postHandle()

afterComplation:处理完视图和模型数据,渲染视图完毕之后执行afterComplation()

3、多个拦截器的执行顺序

  • 若每个拦截器的preHandle()都返回true

    此时多个拦截器的执行顺序和拦截器在SpringMVC的配置文件的配置顺序有关:

    preHandle()会按照配置的顺序执行,而postHandle()和afterComplation()会按照配置的反序执行

  • 若某个拦截器的preHandle()返回了false

    preHandle()返回false和它之前的拦截器的preHandle()都会执行,postHandle()都不执行,返回false的拦截器之前的拦截器的afterComplation()会执行

十一、异常处理器

1、基于配置的异常处理

SpringMVC提供了一个处理控制器方法执行过程中所出现的异常的接口: HandlerExceptionResolver

HandlerExceptionResolver接口的实现类有: DefaultHandlerExceptionResolver和
SimpleMappingExceptionResolver

SpringMVC提供了自定义的异常处理器SimpleMappingExceptionResolver,使用方式:

<!--配置异常处理-->
<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
    <!--设置默认错误页面-->
    <property name="defaultErrorView" value="error1">
    </property>
    <!--设置指定错误跳转到指定错误页面-->
    <property name="exceptionMappings">
        <props>
            <!--
                key表示出现的异常
                value表示要跳转的页面
            -->
            <prop key="java.lang.ArithmeticException">error</prop>
        </props>
    </property>
    <!--将异常信息放到request中-->
    <property name="exceptionAttribute" value="ex"></property>
</bean>

2、基于注解的异常处理

@ControllerAdvice
public class ExceptionController {

    @ExceptionHandler({ArithmeticException.class, SQLDataException.class})
    public String testArithmeticException(Exception exception) {
        System.out.println(exception.getMessage());
        exception.printStackTrace();
        return "error";
    }


    @ExceptionHandler({RuntimeException.class})
    public String testRuntimeException() {

        return "error1";
    }
}

十二、注解配置SpringMVC

使用配置类和注解代替web.xml和SpringMVC配置文件的功能

1、创建初始化类,代替web.xml

在Servlet3.0环境中,容器会在类路径中查找实现javax.servlet.ServletContainerlnitializer接口的类,如果找到的话就用它来配置Servlet容器。

Spring提供了这个接口的实现,名为SpringServletContainerInitializer,这个类反过来又会查找实现WebApplicationInitializer的类并将配置的任务交给它们来完成。Spring3.2引入了一个便利的
WebApplicationInitializer基础实现,名为AbstractAnnotationConfigDispatcherServletlnitializer,当我们的类扩展了AbstractAnnotationConfigDispatcherServletInitializer并将其部署到Servlet3.0容器的时候,容器会自动发现它,并用它来配置Servlet上下文。


import org.springframework.web.filter.CharacterEncodingFilter;
import org.springframework.web.filter.HiddenHttpMethodFilter;
import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

import javax.servlet.Filter;

/**
 * Web工程的初始化类,用来代替Web.xml
 */
public class WebInit extends AbstractAnnotationConfigDispatcherServletInitializer {

    /**
     * 指定Spring配置类
     * @return
     */
    @Override
    protected Class<?>[] getRootConfigClasses() {
        return new Class[]{SpringConfig.class};
    }

    /**
     * 指定SpringMVC的配置类
     * @return
     */
    @Override
    protected Class<?>[] getServletConfigClasses() {
        return new Class[]{WebConfig.class};
    }

    /**
     * 指定DispatherServlet的映射规则,即url-patten
     * @return
     */
    @Override
    protected String[] getServletMappings() {
        return new String[]{"/"};
    }

    /**
     * 指定过滤器
     * @return
     */
    @Override
    protected Filter[] getServletFilters() {
        // 解决乱码的过滤器
        CharacterEncodingFilter encodingFilter = new CharacterEncodingFilter();
        encodingFilter.setEncoding("UTF-8");
        encodingFilter.setForceResponseEncoding(true);
        // 解决不支持PUT和DELETE的请求方法
        HiddenHttpMethodFilter methodFilter = new HiddenHttpMethodFilter();
        return new Filter[]{encodingFilter, methodFilter};
    }
}

2、创建SpringConfig配置类

还没有集成MVC所以是空的

@Configuration
public class SpringConfig {
}

3、创建WebConfig配置类,代替SpringMVC的配置文件

import com.atguigu.mvc.interceptor.FirstInterceptor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.multipart.MultipartResolver;
import org.springframework.web.multipart.commons.CommonsMultipartResolver;
import org.springframework.web.servlet.HandlerExceptionResolver;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.*;
import org.springframework.web.servlet.handler.SimpleMappingExceptionResolver;
import org.thymeleaf.spring5.SpringTemplateEngine;
import org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver;
import org.thymeleaf.spring5.view.ThymeleafViewResolver;

import java.util.List;
import java.util.Properties;

/**
 * 代替SpringMVC的配置文件:
 * 1、扫描组件 √
 * 2、视图解析器 √
 * 3、view-controller √
 * 4、default-servlet-handler √
 * 5、mvc注解驱动 √
 * 6、文件上传解析器 √
 * 7、异常处理 √
 * 8、拦截器 √
 */
@Configuration
//1、扫描组件
@ComponentScan(basePackages = {"com.atguigu.mvc"})
//5、mvc注解驱动(开启mvc注解驱动)
@EnableWebMvc

public class WebConfig implements WebMvcConfigurer {

    @Autowired
    private FirstInterceptor firstInterceptor;

    // 2、视图解析器。配置生成模板解析器
    @Bean
    public SpringResourceTemplateResolver getSpringResourceTemplateResolver() {
        SpringResourceTemplateResolver resolver = new SpringResourceTemplateResolver();
        resolver.setPrefix("/WEB-INF/templates/");
        resolver.setSuffix(".html");
        resolver.setTemplateMode("HTML5");
        resolver.setCharacterEncoding("UTF-8");
        return resolver;
    }
    // 2、视图解析器。配置Thymeleaf视图解析器所需要的设置
    @Bean
    public SpringTemplateEngine getSpringTemplateEngine(SpringResourceTemplateResolver resolver){
        SpringTemplateEngine templateEngine = new SpringTemplateEngine();
        templateEngine.setTemplateResolver(resolver);
        return templateEngine;
    }

    // 2、视图解析器。配置Thymeleaf视图解析器
    @Bean
    public ViewResolver getThymeleafViewResolver(SpringTemplateEngine templateEngine){
        ThymeleafViewResolver thy = new ThymeleafViewResolver();
        thy.setOrder(1);
        thy.setCharacterEncoding("UTF-8");
        thy.setTemplateEngine(templateEngine);
        return thy;
    }

    // 3、view-controller
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/").setViewName("success");
    }

    // 4、default-servlet-handler
    @Override
    public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        configurer.enable();
    }

    // 6、文件上传解析器
    @Bean("multipartResolver")
    public MultipartResolver getCommonsMultipartResolver(){
        CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver();

        return multipartResolver;
    }

    // 7、异常处理
/*    @Bean
    public SimpleMappingExceptionResolver getSimpleMappingExceptionResolver(){
        SimpleMappingExceptionResolver exceptionResolver = new SimpleMappingExceptionResolver();
        // 设置默认错误页面
        exceptionResolver.setDefaultErrorView("error1");

        // 设置指定错误跳转到指定错误页面
        Properties properties = new Properties();
        properties.setProperty("java.lang.ArithmeticException", "error");
        exceptionResolver.setExceptionMappings(properties);

        // 将异常信息放到request中
        exceptionResolver.setExceptionAttribute("ex");
        return exceptionResolver;
    }*/
    // 7、异常处理(第二种方法)
//    @Override
//    public void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> resolvers) {
//        SimpleMappingExceptionResolver exceptionResolver = new SimpleMappingExceptionResolver();
//        // 设置默认错误页面
//        exceptionResolver.setDefaultErrorView("error1");
//
//        // 设置指定错误跳转到指定错误页面
//        Properties properties = new Properties();
//        properties.setProperty("java.lang.ArithmeticException", "error");
//        exceptionResolver.setExceptionMappings(properties);
//
//        // 将异常信息放到request中
//        exceptionResolver.setExceptionAttribute("ex");
//        resolvers.add(exceptionResolver);
//    }


    // 8、拦截器
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(firstInterceptor).addPathPatterns("/**");
    }
}

异常处理的第三种方法。

import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;

import java.sql.SQLDataException;

@ControllerAdvice
public class ExceptionController {

    @ExceptionHandler({ArithmeticException.class, SQLDataException.class})
    public String testArithmeticException(Exception exception) {
        System.out.println(exception.getMessage());
        exception.printStackTrace();
        return "error";
    }


    @ExceptionHandler({RuntimeException.class})
    public String testRuntimeException() {

        return "error1";
    }
}

4、测试功能

十三、SpringMVC执行流程

1、SpingMVC常用组件

  • DispatcherServlet:前端控制器,不需要工程师开发,由框架提供

    作用:统一处理请求和响应,整个流程控制的中心,由它调用其它组件处理用户的请求

  • HandlerMapping:处理器映射器,不需要工程师开发,由框架提供

    作用:根据请求的url、method等信息查找Handler,即控制器方法

  • Handler:处理器,需要工程师开发

    作用:在DispatcherServlet的控制下Handler对具体的用户请求进行处理

  • HandlerAdapter:处理器适配器,不需要工程师开发,由框架提供

    作用:通过HandlerAdapter对处理器(控制器方法)进行执行

  • ViewResolver:视图解析器,不需要工程师开发。由框架提供

    作用:进行视图解析,得到相应的视图,例如: ThymelearView、InternalResourceView、RedirectView

  • View:视图,不需要工程师开发,由框架或视图技术提供

    作用:将模型数据通过页面展示给用户

2、DispatcherServlet初始化过程

DispatcherServlet本质上是一个Servlet,所以天然的遵循Servlet的生命周期。所以宏观上是Servlet 生命周期来进行调度。

  • 初始化WebApplicationContext

    所在类:org.springframework.web.servlet.FrameworkServlet

    /**
     * Initialize and publish the WebApplicationContext for this servlet.
     * <p>Delegates to {@link #createWebApplicationContext} for actual creation
     * of the context. Can be overridden in subclasses.
     * @return the WebApplicationContext instance
     * @see #FrameworkServlet(WebApplicationContext)
     * @see #setContextClass
     * @see #setContextConfigLocation
     */
    protected WebApplicationContext initWebApplicationContext() {
    	WebApplicationContext rootContext =
    			WebApplicationContextUtils.getWebApplicationContext(getServletContext());
    	WebApplicationContext wac = null;
    	if (this.webApplicationContext != null) {
    		// A context instance was injected at construction time -> use it
    		wac = this.webApplicationContext;
    		if (wac instanceof ConfigurableWebApplicationContext) {
    			ConfigurableWebApplicationContext cwac = (ConfigurableWebApplicationContext) wac;
    			if (!cwac.isActive()) {
    				// The context has not yet been refreshed -> provide services such as
    				// setting the parent context, setting the application context id, etc
    				if (cwac.getParent() == null) {
    					// The context instance was injected without an explicit parent -> set
    					// the root application context (if any; may be null) as the parent
    					cwac.setParent(rootContext);
    				}
    				configureAndRefreshWebApplicationContext(cwac);
    			}
    		}
    	}
    	if (wac == null) {
    		// No context instance was injected at construction time -> see if one
    		// has been registered in the servlet context. If one exists, it is assumed
    		// that the parent context (if any) has already been set and that the
    		// user has performed any initialization such as setting the context id
    		wac = findWebApplicationContext();
    	}
    	if (wac == null) {
    		// No context instance is defined for this servlet -> create a local one
            // 创建webapplicationContext
    		wac = createWebApplicationContext(rootContext);
    	}
    	if (!this.refreshEventReceived) {
    		// Either the context is not a ConfigurableApplicationContext with refresh
    		// support or the context injected at construction time had already been
    		// refreshed -> trigger initial onRefresh manually here.
    		synchronized (this.onRefreshMonitor) {
                // 刷新webapplicationContext
    			onRefresh(wac);
    		}
    	}
    	if (this.publishContext) {
    		// Publish the context as a servlet context attribute.
            // 将IOC容器在应用域共享
    		String attrName = getServletContextAttributeName();
    		getServletContext().setAttribute(attrName, wac);
    	}
    	return wac;
    }
    
  • 创建WebApplicationContext

    所在类:org.springframework.web.servlet.FrameworkServlet

    /**
     * Instantiate the WebApplicationContext for this servlet, either a default
     * {@link org.springframework.web.context.support.XmlWebApplicationContext}
     * or a {@link #setContextClass custom context class}, if set.
     * <p>This implementation expects custom contexts to implement the
     * {@link org.springframework.web.context.ConfigurableWebApplicationContext}
     * interface. Can be overridden in subclasses.
     * <p>Do not forget to register this servlet instance as application listener on the
     * created context (for triggering its {@link #onRefresh callback}, and to call
     * {@link org.springframework.context.ConfigurableApplicationContext#refresh()}
     * before returning the context instance.
     * @param parent the parent ApplicationContext to use, or {@code null} if none
     * @return the WebApplicationContext for this servlet
     * @see org.springframework.web.context.support.XmlWebApplicationContext
     */
    protected WebApplicationContext createWebApplicationContext(@Nullable ApplicationContext parent) {
    	Class<?> contextClass = getContextClass();
    	if (!ConfigurableWebApplicationContext.class.isAssignableFrom(contextClass)) {
    		throw new ApplicationContextException(
    				"Fatal initialization error in servlet with name '" + getServletName() +
    				"': custom WebApplicationContext class [" + contextClass.getName() +
    				"] is not of type ConfigurableWebApplicationContext");
    	}
        // 通过反射创建 IOC 容器对象
    	ConfigurableWebApplicationContext wac =
    			(ConfigurableWebApplicationContext) BeanUtils.instantiateClass(contextClass);
    	wac.setEnvironment(getEnvironment());
        // 设置父容器
    	wac.setParent(parent);
    	String configLocation = getContextConfigLocation();
    	if (configLocation != null) {
    		wac.setConfigLocation(configLocation);
    	}
    	configureAndRefreshWebApplicationContext(wac);
    	return wac;
    }
    
  • DispatcherServlet初始化策略

    FrameworkServlet创建WebApplicationContext后,刷新容器,调用onRefresh(wac),此方法在
    DispatcherServlet中进行了重写,调用了initStrategies(context)方法,初始化策略,即初始化DispatcherServlet的各个组件

    所在类:org.springframework.web.servlet.DispatcherServlet

    /**
     * Initialize the strategy objects that this servlet uses.
     * <p>May be overridden in subclasses in order to initialize further strategy objects.
     */
    protected void initStrategies(ApplicationContext context) {
    	initMultipartResolver(context);
    	initLocaleResolver(context);
    	initThemeResolver(context);
    	initHandlerMappings(context);
    	initHandlerAdapters(context);
    	initHandlerExceptionResolvers(context);
    	initRequestToViewNameTranslator(context);
    	initViewResolvers(context);
    	initFlashMapManager(context);
    }
    

3、DispatcherServlet调用组件处理请求

  • processRequest()

    FrameworkServlet重写HttpServlet中的service()和doXXx(),这些方法中调用了processRequest(request,response)

    所在类:org.springframework.web.servlet.FrameworkServlet

    /**
     * Process this request, publishing an event regardless of the outcome.
     * <p>The actual event handling is performed by the abstract
     * {@link #doService} template method.
     */
    protected final void processRequest(HttpServletRequest request, HttpServletResponse response)
    		throws ServletException, IOException {
    	long startTime = System.currentTimeMillis();
    	Throwable failureCause = null;
    	LocaleContext previousLocaleContext = LocaleContextHolder.getLocaleContext();
    	LocaleContext localeContext = buildLocaleContext(request);
    	RequestAttributes previousAttributes = RequestContextHolder.getRequestAttributes();
    	ServletRequestAttributes requestAttributes = buildRequestAttributes(request, response, previousAttributes);
    	WebAsyncManager asyncManager = WebAsyncUtils.getAsyncManager(request);
    	asyncManager.registerCallableInterceptor(FrameworkServlet.class.getName(), new RequestBindingInterceptor());
    	initContextHolders(request, localeContext, requestAttributes);
    	try {
    		doService(request, response);
    	}
    	catch (ServletException | IOException ex) {
    		failureCause = ex;
    		throw ex;
    	}
    	catch (Throwable ex) {
    		failureCause = ex;
    		throw new NestedServletException("Request processing failed", ex);
    	}
    	finally {
    		resetContextHolders(request, previousLocaleContext, previousAttributes);
    		if (requestAttributes != null) {
    			requestAttributes.requestCompleted();
    		}
    		logResult(request, response, failureCause, asyncManager);
    		publishRequestHandledEvent(request, response, startTime, failureCause);
    	}
    }
    
  • doService()

    所在类:org.springframework.web.servlet.DispatcherServlet

    /**
     * Exposes the DispatcherServlet-specific request attributes and delegates to {@link #doDispatch}
     * for the actual dispatching.
     */
    @Override
    protected void doService(HttpServletRequest request, HttpServletResponse response) throws Exception {
    	logRequest(request);
    	// Keep a snapshot of the request attributes in case of an include,
    	// to be able to restore the original attributes after the include.
    	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));
    			}
    		}
    	}
    	// Make framework objects available to handlers and view objects.
    	request.setAttribute(WEB_APPLICATION_CONTEXT_ATTRIBUTE, getWebApplicationContext());
    	request.setAttribute(LOCALE_RESOLVER_ATTRIBUTE, this.localeResolver);
    	request.setAttribute(THEME_RESOLVER_ATTRIBUTE, this.themeResolver);
    	request.setAttribute(THEME_SOURCE_ATTRIBUTE, getThemeSource());
    	if (this.flashMapManager != null) {
    		FlashMap inputFlashMap = this.flashMapManager.retrieveAndUpdate(request, response);
    		if (inputFlashMap != null) {
    			request.setAttribute(INPUT_FLASH_MAP_ATTRIBUTE, Collections.unmodifiableMap(inputFlashMap));
    		}
    		request.setAttribute(OUTPUT_FLASH_MAP_ATTRIBUTE, new FlashMap());
    		request.setAttribute(FLASH_MAP_MANAGER_ATTRIBUTE, this.flashMapManager);
    	}
    	RequestPath requestPath = null;
    	if (this.parseRequestPath && !ServletRequestPathUtils.hasParsedRequestPath(request)) {
    		requestPath = ServletRequestPathUtils.parseAndCache(request);
    	}
    	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);
    			}
    		}
    		if (requestPath != null) {
    			ServletRequestPathUtils.clearParsedRequestPath(request);
    		}
    	}
    }
    
  • doDispatch()

    所在类:org.springframework.web.servlet.DispatcherServlet

    /**
     * Process the actual dispatching to the handler.
     * <p>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.
     * <p>All HTTP methods are handled by this method. It's up to HandlerAdapters or handlers
     * themselves to decide which methods are acceptable.
     * @param request current HTTP request
     * @param response current HTTP response
     * @throws Exception in case of any kind of processing failure
     */
    protected void doDispatch(HttpServletRequest request, HttpServletResponse response) throws Exception {
    	HttpServletRequest processedRequest = request;
    	HandlerExecutionChain mappedHandler = null;
    	boolean multipartRequestParsed = false;
    	WebAsyncManager asyncManager = WebAsyncUtils.getAsyncManager(request);
    	try {
    		ModelAndView mv = null;
    		Exception dispatchException = null;
    		try {
    			processedRequest = checkMultipart(request);
    			multipartRequestParsed = (processedRequest != request);
    			// Determine handler for the current request.
                /*
                mappedHandler:调用链
    			包含handler、interceptorList、interceptorIndex
    			handler:浏览器发送的请求所匹配的控制器方法
    			interceptorList:处理控制器方法的所有拦截器集合
    			interceptorIndex:拦截器索引,控制拦截器aftercompletion()的执行
                */
    			mappedHandler = getHandler(processedRequest);
    			if (mappedHandler == null) {
    				noHandlerFound(processedRequest, response);
    				return;
    			}
    			// Determine handler adapter for the current request.
                //通过控制器方法创建相应的处理器适配器,调用所对应的控制器方法
    			HandlerAdapter ha = getHandlerAdapter(mappedHandler.getHandler());
                
    			// Process last-modified header, if supported by the handler.
    			String method = request.getMethod();
    			boolean isGet = "GET".equals(method);
    			if (isGet || "HEAD".equals(method)) {
    				long lastModified = ha.getLastModified(request, mappedHandler.getHandler());
    				if (new ServletWebRequest(request, response).checkNotModified(lastModified) && isGet) {
    					return;
    				}
    			}
                
                // 调用拦截器的preHandler()
    			if (!mappedHandler.applyPreHandle(processedRequest, response)) {
    				return;
    			}
                
    			// Actually invoke the handler.
                // 由处理器适配器调用具体的控制器方法,最终获得ModelAndView对象
    			mv = ha.handle(processedRequest, response, mappedHandler.getHandler());
    			if (asyncManager.isConcurrentHandlingStarted()) {
    				return;
    			}
    			applyDefaultViewName(processedRequest, mv);
                // 调用拦截器的postHandle()
    			mappedHandler.applyPostHandle(processedRequest, response, mv);
    		}
    		catch (Exception ex) {
    			dispatchException = ex;
    		}
    		catch (Throwable err) {
    			// As of 4.3, we're processing Errors thrown from handler methods as well,
    			// making them available for @ExceptionHandler methods and other scenarios.
    			dispatchException = new NestedServletException("Handler dispatch failed", err);
    		}
    		processDispatchResult(processedRequest, response, mappedHandler, mv, dispatchException);
    	}
    	catch (Exception ex) {
    		triggerAfterCompletion(processedRequest, response, mappedHandler, ex);
    	}
    	catch (Throwable err) {
    		triggerAfterCompletion(processedRequest, response, mappedHandler,
    				new NestedServletException("Handler processing failed", err));
    	}
    	finally {
    		if (asyncManager.isConcurrentHandlingStarted()) {
    			// Instead of postHandle and afterCompletion
    			if (mappedHandler != null) {
    				mappedHandler.applyAfterConcurrentHandlingStarted(processedRequest, response);
    			}
    		}
    		else {
    			// Clean up any resources used by a multipart request.
    			if (multipartRequestParsed) {
    				cleanupMultipart(processedRequest);
    			}
    		}
    	}
    }
    
  • processDispatchResult()

    所在类:org.springframework.web.servlet.DispatcherServlet

    /**
     * Handle the result of handler selection and handler invocation, which is
     * either a ModelAndView or an Exception to be resolved to a ModelAndView.
     */
    private void processDispatchResult(HttpServletRequest request, HttpServletResponse response,
    		@Nullable HandlerExecutionChain mappedHandler, @Nullable ModelAndView mv,
    		@Nullable Exception exception) throws Exception {
    	boolean errorView = false;
    	if (exception != null) {
    		if (exception instanceof ModelAndViewDefiningException) {
    			logger.debug("ModelAndViewDefiningException encountered", exception);
    			mv = ((ModelAndViewDefiningException) exception).getModelAndView();
    		}
    		else {
    			Object handler = (mappedHandler != null ? mappedHandler.getHandler() : null);
    			mv = processHandlerException(request, response, handler, exception);
    			errorView = (mv != null);
    		}
    	}
    	// Did the handler return a view to render?
    	if (mv != null && !mv.wasCleared()) {
            // 处理模型数据和渲染视图
    		render(mv, request, response);
    		if (errorView) {
    			WebUtils.clearErrorRequestAttributes(request);
    		}
    	}
    	else {
    		if (logger.isTraceEnabled()) {
    			logger.trace("No view rendering, null ModelAndView returned.");
    		}
    	}
    	if (WebAsyncUtils.getAsyncManager(request).isConcurrentHandlingStarted()) {
    		// Concurrent handling started during a forward
    		return;
    	}
    	if (mappedHandler != null) {
    		// Exception (if any) is already handled..
            // 调用拦截器的afterCompletion()
    		mappedHandler.triggerAfterCompletion(request, response, null);
    	}
    }
    

4、SpringMVC的执行流程

1)用户向服务器发送请求,请求被SpringMVC前端控制器DispatcherServlet捕获。

2)DispatcherServlet对请求URL进行解析,得到请求资源标识符(URI),判断请求URI对应的映射:

a)不存在

i.再判断是否配置了mvc:default-servlet-handler

ii.如果没配置,则控制台报映射查找不到,客户端展示404错误

DEBuG org.springframework.web.servlet.Dispatcherservlet - GET “/springwVc/testHaha”, parameters={}

WARN org.springframework.web.servlet .PageNotFound - No mapping for GET /springic/testHaha

DEBUG org.springframework.web.servlet.Dispatcherservlet - completed 404 NOT_FOUND

ili.如果有配置,则访问目标资源(一般为静态资源,如: JS,CSS,HTML),找不到客户端也会展示404错误

DispatcherServlet - GET “/springMVC/testHaha”, parameters={}
handler.simpleurlHandlerapping·Mapped to org.springframework,.web. servlet ,resurce.Def aultservletHttpRcquastHandlerDispatcherservlet - completed 404 NOT_FOUND

b)存在则执行下面的流程

3)根据该URI,调用HandlerMapping获得该Handler配置的所有相关的对象(包括Handler对象以及Handler对象对应的拦截器),最后以HandlerExecutionChain执行链对象的形式返回。

  1. DispatcherServlet 根据获得的Handler,选择一个合适的HandlerAdapter。

5)如果成功获得HandlerAdapter,此时将开始执行拦截器的preHandler(…]方法【正向】

6)提取Request中的模型数据,填充Handler入参,开始执行Handler (Controller)方法,处理请求。在填充Handler的入参过程中,根据你的配置,Spring将帮你做一些额外的工作:

a) HittpMessageConveter:将请求消息(如son、xml等数据)转换成一个对象,将对象转换为指定的响应信息

b)数据转换:对请求消息进行数据转换。如String转换成lnteger、Double等

c)数据格式化:对请求消息进行数据格式化。如将字符串转换成格式化数字或格式化日期等

d)数据验证︰验证数据的有效性(长度、格式等),验证结果存储到BindingResult或Error中

7)Handler执行完成后,向DispatcherServlet返回一个ModelAndView对象。

  1. 此时将开始执行拦截器的postHandle(…方法【逆向】。

9)根据返回的ModelAndView (此时会判断是否存在异常:如果存在异常,则执行HandlerExceptionResolver进行异常处理)选择一个适合的ViewResolver进行视图解析,根据Model和View,来渲染视图。

10)渲染视图完毕执行拦截器的afterCormpletion(…)方法【逆向】。

11)将渲染结果返回给客户端。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值