()
| 31 | } |
| 32 | |
| 33 | @GetMapping("/add") |
| 34 | public String register() { |
| 35 | return "registerForm"; // WEB-INF/views/registerForm.jsp |
| 36 | } |
| 37 | |
| 38 | @PostMapping("/add") |
| 39 | public String save(@Valid User user, BindingResult result, Model m) throws Exception { |
nothing calls this directly
no outgoing calls
no test coverage detected