1

这有可能以任何方式实现吗?

@RequestMapping(value = "/test", method = RequestMethod.POST)
public String test(@RequestBody Person personJson , Person personRegular){
    Person person = personJson != null ? personJson : personRegular;
}
4

1 回答 1

0

是的,如果您发送一个 json 表示Person作为 POST 正文,它将绑定到 personJson,并且请求参数将绑定到personRegular,另一种方法可能是将 aid作为请求参数发送,personRegular通过执行数据库填充模块属性查找并注释您的personRegular@ModelAttribute

于 2012-10-20T13:00:39.683 回答