我已经实现了Spring RESTful Web服务。使用Jackson JSON进行对象映射。我有一个接受两个参数的方法。
public Person createPerson( @RequestBody UserContext userContext, @RequestBody Person person)
客户端将如何构造一个请求,以便在正文中传递多个JSON对象?
这可能吗?
-斯里
我很确定那是行不通的。可能有一种解决方法,但更简单的方法是引入包装器对象并更改您的签名:
public class PersonContext{ private UserContext userContext; private Person person; // getters and setters } public Person createPerson(@RequestBody PersonContext personContext)