SpringMVC - (08) RESTful案例

image-20230206074352715

SpringMVC - (08) RESTful案例

1. RESTful的简介

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

资源:

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

资源的表述:

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

状态转移:

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

2. RESTful的实现

HTTP 协议里面,四个表示操作方式的动词:GETPOSTPUTDELETE

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

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

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

下面来进行测试

定义一个控制器,提供以上四种操作的方法:

package com.julissa.mvc.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;

@Controller
public class UserController {

    /**
     * 根据用户id查询用户
     * @param id 用户id
     * @return
     */
    @RequestMapping(value = "/user/{id}",method = RequestMethod.GET)
    public String getUserById(@PathVariable("id") String id){
        System.out.println("根据id查询用户");
        System.out.println(id);
        return "success";
    }

    /**
     * 新增用户信息
     * @param username 用户名
     * @param password 用户密码
     * @return
     */
    @RequestMapping(value = "/user",method = RequestMethod.POST)
    public String saveUser(String username,String password){
        System.out.println("新增用户");
        System.out.println(username);
        System.out.println(password);
        return "success";
    }

    /**
     * 根据id查询用户信息
     * @param id 用户id
     * @return
     */
    @RequestMapping(value = "/user/{id}",method = RequestMethod.DELETE)
    public String deleteUser(@PathVariable("id") String id){
        System.out.println("根据id删除用户");
        System.out.println(id);
        return "success";
    }

    /**
     * 修改用户信息
     * @param username 用户名
     * @param password 用户密码
     * @return
     */
    @RequestMapping(value = "/user",method = RequestMethod.PUT)
    public String updateUser(String username,String password){
        System.out.println("修改用户");
        System.out.println(username);
        System.out.println(password);
        return "success";
    }
}

测试GET请求方式

前端提交请求:

image-20230327221911056

服务器接收数据:

在这里插入图片描述

测试POST请求方式

前端提交请求:

image-20230327222257744

服务器接收数据:

image-20230327222308944

测试DELETE请求方式

前端提交请求:

image-20230327222401556

服务器接收数据:
在这里插入图片描述

测试PUT请求方式

在测试PUT请求之前,在web.xml中添加FormContentFilter过滤器,默认情况下,只有POST请求的表单数据才会被解析,而PUT、PATCH和DELETE的表单数据则不会被解析。配置了FormContentFilter 后,后三种类型的表单数据也可以被解析。

<filter>
    <filter-name>FormContentFilter</filter-name>
    <filter-class>org.springframework.web.filter.FormContentFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>FormContentFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

前端提交请求:

image-20230327222634472

服务器接收数据:

在这里插入图片描述

3. 如何发送put和delete请求

由于浏览器只支持发送get和post方式的请求,那么该如何发送put和delete请求呢?

SpringMVC 提供了 HiddenHttpMethodFilter 帮助我们将 POST 请求转换为 DELETE 或 PUT 请求

HiddenHttpMethodFilter 处理put和delete请求的条件:

  • 当前请求的请求方式必须为post

  • 当前请求必须传输请求参数_method

满足以上条件,HiddenHttpMethodFilter 过滤器就会将当前请求的请求方式转换为请求参数_method的值,因此请求参数_method的值才是最终的请求方式

在web.xml中注册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>

注:

目前为止,SpringMVC中提供了两个过滤器:CharacterEncodingFilter和HiddenHttpMethodFilter

在web.xml中注册时,必须先注册CharacterEncodingFilter,再注册HiddenHttpMethodFilter

原因:

  • 在 CharacterEncodingFilter 中通过 request.setCharacterEncoding(encoding) 方法设置字符集的

  • request.setCharacterEncoding(encoding) 方法要求前面不能有任何获取请求参数的操作

  • 而 HiddenHttpMethodFilter 恰恰有一个获取请求方式的操作:

  • String paramValue = request.getParameter(this.methodParam);

4. 案例

编写程序实现对用户的增删改查,采用三层架构、jdbctemplates、Restful风格编写代码

4.1 前期准备

4.1.1 准备数据

1.创建数据表t_user

image-20230327233856094

2.添加数据

在这里插入图片描述

4.1.2 创建工程

1.创建新的模块,模块名:

image-20230327234726541
4.1.3 修改打包方式

修改打包方式为war

image-20230327234812716

4.1.4 添加相关依赖

在pom.xml添加以下依赖

<dependencies>
    <!-- SpringMVC -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>5.3.24</version>
    </dependency>
    <!-- spring-jdbc -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>5.3.24</version>
    </dependency>
    <!-- mysql驱动-->
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.31</version>
    </dependency>
    <!-- Druid连接池-->
    <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>druid</artifactId>
        <version>1.2.14</version>
    </dependency>
    <!-- 日志 -->
    <dependency>
        <groupId>ch.qos.logback</groupId>
        <artifactId>logback-classic</artifactId>
        <version>1.2.3</version>
    </dependency>
    <!-- ServletAPI -->
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>3.1.0</version>
        <scope>provided</scope>
    </dependency>
    <!-- Spring5和Thymeleaf整合包 -->
    <dependency>
        <groupId>org.thymeleaf</groupId>
        <artifactId>thymeleaf-spring5</artifactId>
        <version>3.0.12.RELEASE</version>
    </dependency>
    <!-- junit -->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.13.2</version>
        <scope>test</scope>
    </dependency>
</dependencies>
4.1.5 添加web模块

点击“File”,选择“Project Structure”,进入配置界面

点击“Module”,选择对应的工程,选择工程下的“Web”选项,点击“+号,添加web.xml

image-20230327235352894

在弹出的窗口中修改web.xml文件的路径

image-20230327235727683
4.1.6 配置web.xml
<?xml version="1.0" encoding="UTF-8"?>
<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">
    
    <!--配置springMVC的编码过滤器-->
    <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>

    <!--
       默认情况下,只有POST请求的表单数据才会被解析,而PUT、PATCH和DELETE的表单数据则不会被解析。
       配置了FormContentFilter 后,后三种类型的表单数据也可以被解析。
    -->
    <filter>
        <filter-name>FormContentFilter</filter-name>
        <filter-class>org.springframework.web.filter.FormContentFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>FormContentFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <!-- 支持PUT、DELETE 过滤器 -->
    <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>

    <!-- 配置SpringMVC的前端控制器,对浏览器发送的请求统一进行处理 -->
    <servlet>
        <servlet-name>springMVC</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!-- 配置springMVC配置文件的位置和名称-->
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springMVC.xml</param-value>
        </init-param>
        <!-- 启动控制DispatcherServlet的初始化时间提前到服务器启动时 -->
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springMVC</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

</web-app>
4.1.7 准备对应的包

工程为三层架构,准备对应的包

image-20230328000846775

4.1.8 创建并配置spring.xml

在resource包下创建

<?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"
       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">

    <!-- 组件扫描 -->
    <context:component-scan base-package="com.julissa.mvc"/>
    <!-- 配置数据源 -->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/springmvc"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
    </bean>
    <!-- 配置JdbcTemplate-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"/>
    </bean>
</beans>
4.1.9 创建并配置springMVC.xml

在resource包下创建

<?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: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/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--引入其他的spring配置文件-->
    <import resource="spring.xml"/>

    <!-- 配置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>
4.1.10 创建实体类User
package com.julissa.mvc.pojo;

public class User {
    private Integer id;
    private String username;
    private String email;
    private Integer gender;

    public User() {
    }

    public User(Integer id, String username, String email, Integer gender) {
        this.id = id;
        this.username = username;
        this.email = email;
        this.gender = gender;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public Integer getGender() {
        return gender;
    }

    public void setGender(Integer gender) {
        this.gender = gender;
    }

    @Override
    public String toString() {
        return "User{" +
                "id=" + id +
                ", username='" + username + '\'' +
                ", email='" + email + '\'' +
                ", gender=" + gender +
                '}';
    }
}

至此,前期准备工作完成。

4.2 持久层实现

4.2.1 UserDao接口
package com.julissa.mvc.dao;

import com.julissa.mvc.pojo.User;

import java.util.List;

public interface UserDao {

    /**
     * 新增用户信息
     * @param user
     * @return
     */
    public int insert(User user);

    /**
     * 根据id删除用户信息
     * @param id
     * @return
     */
    public int delete(int id);

    /**
     * 修改用户信息
     * @param user
     * @return
     */
    public int update(User user);

    /**
     * 根据id查询用户信息
     * @param id
     * @return
     */
    public User selectById(int id);

    /**
     * 查询所有用户信息
     * @return
     */
    public List<User> selectAll();
}
4.2.2 UserDaoImpl实现类
package com.julissa.mvc.dao.impl;

import com.julissa.mvc.dao.UserDao;
import com.julissa.mvc.pojo.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Repository;

import java.util.List;

@Repository("userDao")
public class UserDaoImpl implements UserDao {

    @Autowired
    private JdbcTemplate jdbcTemplate;

    @Override
    public int insert(User user) {
        String sql = "insert into t_user(username,email,gender) values(?,?,?)";
        int row = jdbcTemplate.update(sql, user.getUsername(), user.getEmail(), user.getGender());
        return row;
    }

    @Override
    public int delete(int id) {
        String sql = "delete from t_user where id = ?";
        int row = jdbcTemplate.update(sql, id);
        return row;
    }

    @Override
    public int update(User user) {
        String sql = "update t_user set username = ?, email = ?, gender = ? where id = ?";
        int row = jdbcTemplate.update(sql, user.getUsername(), user.getEmail(), user.getGender(),user.getId());
        return row;
    }

    @Override
    public User selectById(int id) {
        String sql = "select * from t_user where id = ?";
        User user = jdbcTemplate.queryForObject(sql, new BeanPropertyRowMapper<>(User.class), id);
        return user;
    }

    @Override
    public List<User> selectAll() {
        String sql = "select * from t_user";
        List<User> list = jdbcTemplate.query(sql, new BeanPropertyRowMapper<>(User.class));
        return list;
    }
}

4.3 业务层实现

4.3.1 UserService接口
package com.julissa.mvc.service;

import com.julissa.mvc.pojo.User;

import java.util.List;

public interface UserService {
    /**
     * 添加用户
     * @param user
     * @return
     */
    public int addUser(User user);

    /**
     * 根据id删除用户
     * @param id
     * @return
     */
    public int deleteUser(int id);

    /**
     * 修改用户信息
     * @param user
     * @return
     */
    public int modifyUser(User user);

    /**
     * 根据id查询用户信息
     * @param id
     * @return
     */
    public User findUserById(int id);

    /**
     * 查询所有用户信息
     * @return
     */
    public List<User> findAll();
}
4.3.2 UserServiceImpl实现类
package com.julissa.mvc.service.impl;

import com.julissa.mvc.dao.UserDao;
import com.julissa.mvc.pojo.User;
import com.julissa.mvc.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service("userService")
public class UserServiceImpl implements UserService {

    @Autowired
    private UserDao userDao;

    @Override
    public int addUser(User user) {
        int row = userDao.insert(user);
        return row;
    }

    @Override
    public int deleteUser(int id) {
        int row = userDao.delete(id);
        return row;
    }

    @Override
    public int modifyUser(User user) {
        int row = userDao.update(user);
        return row;
    }

    @Override
    public User findUserById(int id) {
        User user = userDao.selectById(id);
        return user;
    }

    @Override
    public List<User> findAll() {
        List<User> users = userDao.selectAll();
        return users;
    }
}

4.4 功能清单

功能URL 地址请求方式
访问首页√/GET
查询全部数据√/userGET
删除√/user/1001DELETE
跳转到添加数据页面√/addGET
执行保存√/userPOST
跳转到更新数据页面√/user/1001GET
执行更新√/userPUT

4.5 具体功能:访问首页

控制器方法:

@Controller
public class IndexController {
    @RequestMapping("/")
    public String index(){
        return "index";
    }
}

创建首页

<!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="@{/user}">用户列表</a>
</body>
</html>

浏览器访问:http://localhost:8080/springMVC/

在这里插入图片描述

4.6 具体功能:查询所有用户数据

控制器方法:

@Controller
public class UserController {
    @Autowired
    private UserService userService;
    @RequestMapping(value = "/user",method = RequestMethod.GET)
    public String listUsers(Model model){
        List<User> userList = userService.findAll();
        // 向域中共享数据
        model.addAttribute("userlist", userList);
        return "user_list";
    }
}

前端提交http://localhost:8080/springMVC/user的GET请求,此时服务器请求映射会请求UserController控制器的listUsers()方法,此方法会调用业务层实现类中查询所有用户信息的方法,返回一个列表,将该列表存储到域中,然后转发到用户列表视图。

创建user_list.html:

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>用户列表</title>
</head>
<body>
  <table border="1" cellspacing="0" cellpadding="0" style="text-align: center" width="400">
    <tr>
        <th colspan="5">用户列表</th>
    </tr>
    <tr>
        <td>编号</td>
        <td>用户名</td>
        <td>邮箱</td>
        <td>性别</td>
        <td>操作</td>
    </tr>
    <tr th:each="user : ${userlist}">
        <td th:text="${user.id}"></td>
        <td th:text="${user.username}"></td>
        <td th:text="${user.email}"></td>
        <td th:text="${user.gender}"></td>
        <td>
            <a href="">修改</a>
            <a href="">删除</a>
        </td>
    </tr>
  </table>
</body>
</html>

浏览器访问:http://localhost:8080/springMVC/,点击用户列表链接跳转

image-20230328015013302

4.7 具体功能:跳转到添加数据页面

控制器方法:

@RequestMapping("/add")
public String add(){
    return "user_add";
}

在user_list.html添加超链接代码:

<tr>
    <a th:href="@{/add}">添加用户</a>
</tr>

创建user_add.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>添加用户</title>
</head>
<body>
  <form method="post" th:action="@{/user}">
    用户名:<input type="text" name="username"/><br>
    邮箱::<input type="text" name="email"/><br>
    性别:<input type="radio" name="gender" value="1"/>male
      <input type="radio" name="gender" value="0">female<br>
      <button type="submit">添加</button>
  </form>
</body>
</html>

前端效果:

image-20230328135539404

4.8 具体功能:添加用户

控制器方法:

@RequestMapping(value = "/user",method = RequestMethod.POST)
public String addUsers(User user){ // 用user对象接收前端提交的数据
    userService.addUser(user);
    // 重定向到用户列表视图
    return "redirect:/user";
}

前端提交http://localhost:8080/springMVC/user的POST请求,此时服务器请求映射会请求UserController控制器的addUsers()方法,此方法会调用业务层实现类中添加用户的方法,向数据库中插入一条信息,然后重定向到用户列表视图。

前端效果:

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-XJoA9UTo-1679988929619)(null)]

4.9 具体功能:跳转到更新数据页面

修改超链接:

<a th:href="@{'/user/'+${user.id}}">修改</a>

控制器方法:

@RequestMapping(value = "/user/{id}",method = RequestMethod.GET)
public String findUserById(@PathVariable("id") int id, Model model){
    User user = userService.findUserById(id);
    model.addAttribute("user",user);
    return "user_update";
}

通过此超链接,前端提交http://localhost:8080/springMVC/user/1001的GET请求,此时服务器请求映射会请求UserController控制器的findUserById()方法,此方法会调用业务层实现类中查询一个用户信息的方法,返回一个根据id查询的user对象,存储到域中,然后转发到修改视图

创建user_update.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>修改用户</title>
</head>
<body>
  <h2>修改用户信息</h2>
  <form method="post" th:action="@{/user}">
      <!-- 向服务器提交一个put请求,_method=put-->
      <input type="hidden" name="_method" value="put">
      <input type="hidden" name="id" th:value="${user.id}">
    用户名:<input type="text" name="username" th:value="${user.username}"/><br>
    邮箱::<input type="text" name="email" th:value="${user.email}"/><br>
      <!--th:field="${employee.gender}"可用于单选框或复选框的回显
        若单选框的value和employee.gender的值一致,则添加checked="checked"属性-->
    性别:<input type="radio" name="gender" value="1" th:field="${user.gender}"/>male
      <input type="radio" name="gender" value="0" th:field="${user.gender}">female<br>
      <button type="submit">修改</button>
  </form>
</body>
</html>

修改用户信息提交的请求为PUT请求,浏览器无法直接提交PUT请求,必须向服务器提交一个参数名为_method,参数值为put的参数,HiddenHttpMethodFilter过滤器就会将当前请求的请求方式转换为请求参数_method的值,提交的请求才是PUT请求

前端效果:

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-or4xQ9xU-1679988925449)(null)]

4.10 具体功能:修改用户信息

控制器方法:

@RequestMapping(value = "/user",method = RequestMethod.PUT)
public String modifyUsers(User user, String _method) {// user对象接收用户信息,属性名和提交的参数名一样就会自动封装 
    userService.modifyUser(user);
    return "redirect:/user";
}

通过修改页面的form表单,前端提交http://localhost:8080/springMVC/user的PUT请求,此次请求包含用户的信息和一个_method参数,此时服务器请求映射会请求UserController控制器的modifyUsers()方法,此方法会调用业务层实现类中修改用户信息的方法,根据id对用户信息进行修改,然后重定向到用户列表视图

前端效果:

image-20230328145155426

4.11 具体功能:删除用户

浏览器无法提交delete请求,通过超链接触发表单提交,表单中包含一个_method参数,值为delete

1.创建处理delete请求方式的表单:

<!-- 作用:通过超链接控制表单的提交,将post请求转换为delete请求 -->
<form id="delete_form" method="post">
    <!-- HiddenHttpMethodFilter要求:必须传输_method请求参数,并且值为最终的请求方式 -->
    <input type="hidden" name="_method" value="delete"/>
</form>

2.删除超链接绑定点击事件

引入vue.js:在webapp下创建/static/js目录,将vue.js引入

<script type="text/javascript" th:src="@{/static/js/vue.js}"></script>

引入js文件之后记得重新打包

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-UNBMrhCS-1679988929511)(null)]

删除超链接

<a @click="deleteUser" th:href="@{'/user/'+${user.id}}">删除</a>

通过vue处理点击事件,在table标签绑定id=“root”

<script type="text/javascript">
    var vue = new Vue({
        el:"#root",
        methods:{
            //event表示当前事件
            deleteUser:function (event) {
                //通过id获取表单标签
                var delete_form = document.getElementById("delete_form");
                //将触发事件的超链接的href属性为表单的action属性赋值
                delete_form.action = event.target.href;
                //提交表单
                delete_form.submit();
                //阻止超链接的默认跳转行为
                event.preventDefault();
            }
        }
    });
</script>

控制器方法:

@RequestMapping(value = "/user/{id}",method = RequestMethod.DELETE)
public String deleteUserById(@PathVariable("id") int id){
    userService.deleteUser(id);
    return "redirect:/user";
}

通过form表单,前端提交http://localhost:8080/springMVC/user/1001的delete请求,此次请求包含用户的信息和一个_method参数,此时服务器请求映射会请求UserController控制器的deleteUserById()方法,此方法会调用业务层实现类中删除用户信息的方法,根据id对用户信息进行删除,然后重定向到用户列表视图

前端效果:

image-20230328152115040

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值