SpringBootLearning icon indicating copy to clipboard operation
SpringBootLearning copied to clipboard

springboot处理表单提交有个错误

Open 000xiaoxiao000 opened this issue 7 years ago • 0 comments

springboot-handling-form-submission 有个错误 image

改为:

@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";
}

}

000xiaoxiao000 avatar Oct 31 '18 12:10 000xiaoxiao000