9101112131415
@Controller public class SimpleFormController { @RequestMapping(value = "/simpleForm.html", method = RequestMethod.GET) public void simpleForm(Model model) { model.addAttribute(new User()); }