-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Description
springboot-handling-form-submission
有个错误
改为:
@controller
public class GreetingController {
@GetMapping("/greeting")
public String greetingForm(Model model) {
model.addAttribute("greeting", new Greeting());
return "greeting";
}
@PostMapping("/greeting")
public String greetingSubmit(@ModelAttribute Greeting greeting, Model model) {
model.addAttribute("greeting", greeting);
return "result";
}
}
Metadata
Metadata
Assignees
Labels
No labels