1)正如Biju所说,添加modelAttribute =“ comment”
2)将comment.name,comment.message更改为名称,消息
3)重做您的GET处理程序:
@RequestMapping(method=RequestMethod.GET) public String addCommentForm(ModelMap model) { model.addAttribute("comment", new Comment()); return "comments"; }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)