spring-boot restful put方式提交表单

Posted 博尔特希

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-boot restful put方式提交表单相关的知识,希望对你有一定的参考价值。

使用spring-boot 做接口,如果按restful的路由形式想使用put方式进行表单提交,第一个参数应该为文件参数,代码如下:

@PutMapping("/http-put")
public IbaseWorkResult httpPut(@RequestParam("file") MultipartFile multipartFile, @RequestParam("project_id") Integer project_id) {
    System.out.println(multipartFile);
    System.out.println(project_id);
    return IbaseWorkResultUtil.error(-1, "测试PUT提交方式");
}

 

以上是关于spring-boot restful put方式提交表单的主要内容,如果未能解决你的问题,请参考以下文章

restful有几种请求,表单如何提交put请求

RESTful 在TOMCAT8的环境下 怎么配置put,delete提交方式

REST模式中HTTP请求方法(GET,POST,PUT,DELETE)

列出所有已部署的 REST 端点(spring-boot、tomcat)

Rest API 设计 PUT vs PATCH

使用spring-boot对rest服务进行访问控制