确保你的Spring表单提及
modelAttribute="<Model Name"。
例:
@Controller@RequestMapping("/greeting.html")public class GreetingController { @ModelAttribute("greeting") public Greeting getGreetingObject() { return new Greeting(); } @RequestMapping(method = RequestMethod.GET) public String handleRequest() { return "greeting"; } @RequestMapping(method = RequestMethod.POST) public ModelAndView processSubmit(@ModelAttribute("greeting") Greeting greeting, BindingResult result){ ModelAndView mv = new ModelAndView(); mv.addObject("greeting", greeting); return mv; }}在你的JSP中:
<form:form modelAttribute="greeting" method="POST" action="greeting.html">



