Hi,
I have this error, I have a form, and on submission i display a successView but for some reason is shows and 404 error.
below is the code snippet.and the error log says No mapping found on registerSuccess.Code:@Controller @RequestMapping("registerForm") public class Contoller { @RequestMapping(method = RequestMethod.GET) public String setupForm() { .... return "registerForm"; } @RequestMapping(method = RequestMethod.POST) public String submitForm() { ... return "redirect:registerSuccess"; } }
How do I map the registerSuccess?
Thanks in advanace


Reply With Quote