Spring boot 获取post提交参数的几种方法

前提:

客户端提交header,设置Content-Type类型为:application/json,这一项设置可有可无,但是为了避免出现其他不可预料的问题,事先说明,建议添加这一项请求头header设置。

 

一、使用@RequestParam

    @RequestMapping(value = "/login", method = RequestMethod.POST)
    public Map<String, Object> login(@RequestParam("username") String username, @RequestParam("password") String password) {
        Map<String, Object> map = new HashMap<>();
        log.info("正在登录,账号 = {},密码 = {}", username, password);
        return map;
    }

 

二、使用Map

    @RequestMapping(value = "/login", method = RequestMethod.POST)
    public Map<String, Object> login(@RequestParam Map<String,Object> params) {
        Map<String, Object> map = new HashMap<>();
        log.info("正在登录,账号 = {},密码 = {}", params.get("username"), params.get("password"));
        return map;
    }

 

三、使用数组

 

    @RequestMapping(value = "/login", method = RequestMethod.POST)
    public void login(@RequestParam("name") String[] names) {
        for(String name: names) {
            System.out.println(name);
        }
    }

 

四、使用自定义对象,建议使用这种方式

1
2
3
4
5
@PostMapping("/test")
public R test(@Validated @RequestBody Request vo) {
      ProjectVO projectVO = iProjectService.test(vo);
      return new R().success(projectVO);
  }

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import org.springframework.http.HttpStatus;
 
import java.io.Serializable;
 
public class R<T> implements Serializable {
    private Integer status;
    private String msg;
    private T data;
 
    public R success() {
        this.status = HttpStatus.OK.value();
        this.msg = "OK";
        return this;
    }
 
    public R success(Integer status, String message) {
        this.status = status;
        this.msg = message;
        return this;
    }
 
    public R<T> success(T response) {
        this.status = HttpStatus.OK.value();
        this.msg = "OK";
        this.data = response;
        return this;
    }
 
    public R<T> success(Integer status, String message, T response) {
        this.status = status;
        this.msg = message;
        this.data = response;
        return this;
    }
 
    public R error(String message) {
        this.status = HttpStatus.INTERNAL_SERVER_ERROR.value();
        this.msg = message;
        return this;
    }
 
    public R error(Integer status, String message) {
        this.status = status;
        this.msg = message;
        return this;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public void setMsg(String message) {
        this.msg = message;
    }
 
    public T getData() {
        return data;
    }
 
    public void setData(T response) {
        this.data = response;
    }
}

  

参考资料

https://www.hangge.com/blog/cache/detail_2485.html

posted @   jamstack  阅读(4566)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
点击右上角即可分享
微信分享提示