SpringBoot对一个URL通过method(GET、POST、PUT、DELETE)实现增删改查操作

目录

  • [1. rest风格基础](#1. rest风格基础)
  • [2. 开启方法](#2. 开启方法)
  • [3. 实战练习](#3. 实战练习)

1. rest风格基础

我们都知道GET、POST、PUT、DELETE分别对应查、增、改、删除

虽然Postman这些工具可以直接发送GET、POST、PUT、DELETE请求。但是@RequestMapping并不支持PUT和DELETE请求操作。需要我们手动开启

2. 开启方法

PUT和DELETE还是通过method=POST进行请求,但是需要添加对应的隐藏域_method=PUT/DELETE

然后配置文件进行参数的配置:spring.mvc.hiddenmethod.filter.enabled=true

3. 实战练习

  1. 添加如下参数到application.properties文件。表示开启隐藏方法使用

    spring.mvc.hiddenmethod.filter.enabled=true

  2. 编写Controller。在一个请求路径上,分别定义了GET、POST、PUT、DELETE四种method

其中GetMapping、PostMapping、PutMapping、DeleteMapping等同于@RequestMapping对应的method。如下所示:

Java 复制代码
package com.hh.springboottest.myController;

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

@RestController
public class HelloController {

    // @GetMapping("/user")
    @RequestMapping(value="/user", method = RequestMethod.GET)
    public String getUser() {
        return "get user";
    }

    // @PostMapping("/user")
    @RequestMapping(value="/user", method = RequestMethod.POST)
    public String saveUser() {
        return "save user";
    }

    // @PutMapping("/user")
    @RequestMapping(value="/user", method = RequestMethod.PUT)
    public String editUser() {
        return "edit user";
    }

    // @DeleteMapping("/user")
    @RequestMapping(value="/user", method = RequestMethod.DELETE)
    public String deleteUser() {
        return "delete user";
    }
}
  1. 编写resources/static/index.html页面。PUT和DELETE还是通过method=POST进行请求,但是需要添加对应的隐藏域_method=PUT/DELETE。还支持的一个隐藏域是_method=PATCH
Html 复制代码
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>test title</title>
</head>
<body>

<form action="/user" method="get">
    <input value="rest get提交" type="submit" />
</form>
<form action="/user" method="post">
    <input value="rest post提交" type="submit" />
</form>
<form action="/user" method="post">
    <input name="_method" type="hidden" value="PUT" />
    <input value="rest put提交" type="submit" />
</form>
<form action="/user" method="post">
    <input name="_method" type="hidden" value="DELETE" />
    <input value="rest delete提交" type="submit" />
</form>

</body>
</html>
  1. 然后访问http://localhost:8080/,点击rest get提交。如下所示:

    得到的结果如下:
相关推荐
aloha_7892 小时前
从零记录搭建一个干净的mybatis环境
java·笔记·spring·spring cloud·maven·mybatis·springboot
阑梦清川7 小时前
JavaEE进阶---第一个SprintBoot项目创建过程&&&我的感受
java·java-ee·springboot
A-bodgie8 小时前
Spring 中的 Environment 对象
java·后端·spring·servlet·springboot
小布布的不11 小时前
MyBatis 返回 Map 或 List<Map>时,时间类型数据,默认为LocalDateTime,响应给前端默认含有‘T‘字符
前端·mybatis·springboot
小沈同学呀12 小时前
Mac M1 Docker创建Rocketmq集群并接入Springboot项目
macos·docker·java-rocketmq·springboot
东皋长歌1 天前
SpringBoot+ClickHouse集成
clickhouse·springboot
程序员徐师兄2 天前
基于 JavaWeb 的宠物商城系统(附源码,文档)
java·vue·springboot·宠物·宠物商城
果冻眼企鹅2 天前
常见用于从 HTTP 请求中提取数据的注解
springboot
你白勺男孩TT2 天前
Vue项目中点击按钮后浏览器屏幕变黑,再次点击恢复的解决方法
vue.js·vue·springboot
小云小白3 天前
springboot 传统应用程序,适配云原生改造
云原生·系统架构·k8s·springboot