弹簧REST多个@RequestBody参数,可能吗?

2022-08-31 17:17:47

我已经实现了一个Spring RESTful Web服务。使用 Jackson JSON 进行对象映射。我有一个接受两个参数的方法。

public Person createPerson(
    @RequestBody UserContext userContext,
    @RequestBody Person person)

客户端如何构造一个请求,其中多个 JSON 对象要在正文中传递?

这可能吗?

-- 斯里


答案 1

我很确定这行不通。可能有一个解决方法,但更简单的方法是引入包装器对象并更改您的签名:

public class PersonContext{
    private UserContext userContext;
    private Person person;
    // getters and setters
}


public Person createPerson(@RequestBody PersonContext personContext)

答案 2