• SpringMVC


    SpringMVC


    一、简介

    1.什么是MVC

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

    • M:Model,模型层,指工程中的JavaBean,作用是处理数据

      ​ JavaBean分为两类:

      • 一类称为实体类Bean:专门存储业务数据的,如 Student、User 等
      • 一类称为业务处理 Bean:指 Service 或 Dao 对象,专门用于处理业务逻辑和数据访问。
    • V:View,视图层,指工程中的html或jsp等页面,作用是与用户进行交互,展示数据

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

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

    2. 什么是SpringMVC

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

    SpringMVC 是 Spring 为表述层开发提供的一整套完备的解决方案。在表述层框架历经 Strust、WebWork、Strust2 等诸多产品的历代更迭之后,目前业界普遍选择了 SpringMVC 作为 Java EE 项目表述层开发的首选方案

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

    3. SpringMVC的特点

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

    二、 HelloWorld

    1.导入maven依赖

    
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-webmvcartifactId>
            <version>5.3.1version>
        dependency>
    
        
        <dependency>
            <groupId>ch.qos.logbackgroupId>
            <artifactId>logback-classicartifactId>
            <version>1.2.3version>
        dependency>
    
        
        <dependency>
            <groupId>javax.servletgroupId>
            <artifactId>javax.servlet-apiartifactId>
            <version>3.1.0version>
            
            <scope>providedscope>
        dependency>
    
        
        <dependency>
            <groupId>org.thymeleafgroupId>
            <artifactId>thymeleaf-spring5artifactId>
            <version>3.0.12.RELEASEversion>
        dependency>
    
    
    <dependency>
        <groupId>com.fasterxml.jackson.coregroupId>
        <artifactId>jackson-databindartifactId>
        <version>2.12.1version>
    dependency>
    

    2.web.xml

    
    <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
             version="4.0"
             metadata-complete="false">
        
        
        <servlet>
            <servlet-name>springMVCservlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
            
            
            
            <init-param>
                
                <param-name>contextConfigLocationparam-name>
                
                <param-value>classpath:springMVC.xmlparam-value>
            init-param>
            
            
            
            <load-on-startup>1load-on-startup>
        servlet>
        
        
        <servlet-mapping>
            <servlet-name>springMVCservlet-name>
            
            <url-pattern>/url-pattern>
        servlet-mapping>
    
    web-app>
    

    关于/中的值设置的不是/* 而是/的原因

    设置springMVC的核心控制器所能处理的请求的请求路径/所匹配的请求可以是/login或.html或.js或.css方式的请求路径但是/不能匹配.jsp请求路径的请求

    为什么不使用默认配置方式而是使用可扩展的配置方式

    ​ 默认配置方式下,SpringMVC的配置文件默认位于WEB-INF下,默认名称为-servlet.xml,例如,以下配置所对应SpringMVC的配置文件位于WEB-INF下,文件名为springMVC-servlet.xml

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

    3.创建请求控制器

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

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

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

    @Controller
    public class HelloController {
       
    
        @RequestMapping(value = "/")
        public String index(){
       
            //返回视图名称
            return "index";
        }
    }
    

    4.创建SpringMVC的配置文件

    <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-4.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.2.xsd">
        
        
        <context:component-scan base-package="com.springMVC.mvc.controller">context:component-scan>
    
        
        <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>
    
    beans>
    

    5.测试:通过超链接到指定页面

    index.html

    DOCTYPE html>
    <html lang="en" xmlns:th=" http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>首页title>
    head>
    <body>
    <h1>首页h1>
    <a th:href="@{/target}">访问目标页面a>
    body>
    html>
    

    target.html

    DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Titletitle>
    head>
    <body>
    <h1>HelloWorldh1>
    body>
    html>
    

    配置请求控制器

    @RequestMapping(value = "/")
    public String index(){
       
        //返回视图名称
        return "index";
    }
    
    @RequestMapping("/target")
    public String toTarget(){
       
        return "target";
    }
    

    总结

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

    三、@RequestMapping注解

    1. @RequestMapping的功能

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

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

    2. @RequestMapping注解的标注位置

    可以标注在类和方法上

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

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

    @Controller
    //标识一个类
    @RequestMapping("/Hello")
    public class RequestMappingContorller {
       
    
        //标识一个方法
        @RequestMapping("/target")
        public String success(){
       
            return "success";
        }
    
    }
    

    上述success.html的真实访问路径为**/Hello/target**

    @Controller
    @RequestMapping("/Hello")
    public class TestController {
       
    
        @RequestMapping("/")
        public String index(){
       
            return "index";
        }
    
        @RequestMapping("/target")
        public String toTarget(){
       
            return "success";
        }
    }
    

    如果同一个路径,被映射了两次,会出现500错误。

    3. @RequestMapping注解的value属性

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

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

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

    测试可以匹配多个地址的请求

    @Controller
    @RequestMapping("/Hello")
    public class RequestMappingContorller {
       
    
        @RequestMapping(
                value = {
       "success","successTest"}
        )
        public String success(){
       
            return "success";
        }
    
    }
    
    <a th:href="@{target}">点击跳转到success页面a>br>
    <a th:href="@{Hello/success}">点击跳转到success页面  successa>br>
    <a th:href="@{Hello/successTest}">点击跳转到success页面   successTesta>br>
    

    4. @RequestMapping注解的method属性

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

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

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

    @RequestMapping(
            value = {
       "success","successTest"},
            //如果发送的请求不匹配,则405错误
            method = {
       RequestMethod.POST,RequestMethod.POST}
    )
    public String success(){
       
        return "success";
    }
    
    <h1>首页h1>
    
    <a th:href="@{/target}">点击跳转到success页面a>br>
    <a th:href="@{/Hello/success}">点击跳转到success页面  successa>br>
    <a th:href="@{/Hello/successTest}">点击跳转到success页面   successTesta>br>
    
    <form th:action="@{/Hello/success}" method="post">
        <input type="submit" value="测试method属性--post">
    form>
    br>
    <form th:action="@{/Hello/success}" method="get">
        <input type="submit" value="测试method属性--get">
    form>
    

    派生注解:

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

    处理get请求的映射–>@GetMapping

    处理post请求的映射–>@PostMapping

    处理put请求的映射–>@PutMapping

    处理delete请求的映射–>@DeleteMapping

    注意这种只能匹配一种请求,不能匹配多种请求。

    @GetMapping("success")
    public String success(){
       
        return "success";
    }
    

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

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

    若要发送put和delete请求,则需要通过spring提供的过滤器HiddenHttpMethodFilter,在RESTful部分会讲到

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

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

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

    注意"param=value"里面绝对不能有空格

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

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

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

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

    @RequestMapping(
            value = {
       "success","successTest"},
            //如果发送的请求不匹配,则405错误
            method = {
       RequestMethod.POST,RequestMethod.GET},
            params = {
       "username=admin"}
    )
    public String success(){
       
        return "success";
    }
    
    <form th:action="@{/Hello/success}" method="get">
        <input type="text" name="username
  • 相关阅读:
    判断Emoji在当前系统版本能否正常显示
    vue3(二)- - - - vite3.1 + vue3.2配置axios
    【TRT】内存管理封装
    【DesignMode】单例模式(singleton pattern)
    学习-Java数组之Arrays类操作数组之填充替换数组元素
    任意文件下载漏洞(CVE-2021-44983)
    YOLO目标检测——烟雾检测数据集下载分享【含对应voc、coco和yolo三种格式标签】
    Redis hash 命令总结
    我,大厂测试员,降薪50%去国企,后悔了...
    与创新者同行!Apache Doris 首届线下峰会即将开启,最新议程公开!|即刻预约
  • 原文地址:https://blog.csdn.net/A_Pluto_i/article/details/126964261