@ModelAttribute("user")
@RequestMapping(value = "/", method = RequestMethod.POST)
public User saveUser( @RequestBody User user ) throws IOException {
logger.debug(user);
return user;
}
requestbody will convert the json into bean(pojo), is there required to use annotation @ModelAttribute("user") in this case?