使用Spring boot开发RestFul 风格项目PUT/DELETE方法不起作用

Posted pclover11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Spring boot开发RestFul 风格项目PUT/DELETE方法不起作用相关的知识,希望对你有一定的参考价值。

在使用Spring boot 开发restful 风格的项目,put、delete方法不起作用,解决办法。

实体类Student

@Data
public class Student {

    private String id;
    private String name;
    private int age;
    private String sex;

    @Override
    public String toString() {
        return ToStringBuilder.reflectionToString(this);
    }
}

 

controller

@RestController
public class GreetingController {

    @RequestMapping(value = "/demo1/student", method = RequestMethod.POST)
    public void addStudent(Student student) {
        System.out.println(student);
        System.out.println("添加成功");
    }

    @RequestMapping(value = "/demo1/student", method = RequestMethod.PUT)
    public void updateStudent(Student student) {
        System.out.println(student);
        System.out.println("更新成功");
    }

    @RequestMapping(value = "/demo1/student", method = RequestMethod.GET)
    public Student getAtudentById(String id) {
        System.out.println("接收到的的参数" + id);
        Stuent s = new Student();
        s.setId("12");
        s.setName("google");
        s.setAge(12);
        return s;
    }


    @RequestMapping(value = "/demo1/student", method = RequestMethod.DELETE)
    public void delStudent(Student student) {
        System.out.println(student);
        System.out.println("删除成功");
    }

}

 

使用put 更新接口调用,参数无法传递过去。解决办法是在需要组装的参数前面添加注解 @RequestBody 

修改如下:

@RequestMapping(value = "/demo1/student", method = RequestMethod.PUT)
    public void updateStudent(@RequestBody Student student) {
        System.out.println(student);
        System.out.println("更新成功");
    }

即可成功调用

 

delete 接口修改方法相同

以上是关于使用Spring boot开发RestFul 风格项目PUT/DELETE方法不起作用的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 2 全局统一返回RESTful风格数据统一异常处理

spring boot 快速搭建 基于 Restful 风格的微服务

Spring Boot 中 10 行代码构建 RESTful 风格应用

spring boot:使接口返回统一的RESTful格式数据(spring boot 2.3.1)

Spring构建Springboot项目 实现restful风格接口

基于Spring Boot的RESTful API实践