除了@RequestBody 和@ModelAttribute 之外,将数据绑定到Spring MVC 控制器的方法参数的可能方法是什么。我可以使用@Valid 绑定数据吗,实现代码如下。
@RequestMapping(value="/person", method = RequestMethod.POST)
public String createPerson(@Valid Person person, BindingResult bindingResult){
...
}
除了@RequestBody 和@ModelAttribute 之外,将数据绑定到Spring MVC 控制器的方法参数的可能方法是什么。我可以使用@Valid 绑定数据吗,实现代码如下。
@RequestMapping(value="/person", method = RequestMethod.POST)
public String createPerson(@Valid Person person, BindingResult bindingResult){
...
}