The below is my controller.
@Controller
@RequestMapping("/userRegistration.htm")
@SessionAttributes("user")
public class UserController {
private UserService userService;
@Autowired
public void setUserService(UserService userService) {
this.userService = userService;
}
@RequestMapping(method = RequestMethod.GET)
public String showUserForm(ModelMap model)
{
User user = new User();
model.addAttribute(user);
return "userForm";
}
@RequestMapping(method = RequestMethod.POST)
public void onSubmit(@ModelAttribute("user") User user, HttpServletResponse response) {
userService.add(user);
//return "redirect:userSuccess.htm";
}
}
The problem in the above code is, in the method 'onSubmit' I am not returning anything but the webpage in the browser is lost, as well as it is not redirected to any new URL, the same URL displayed in the browser.
Please let us know, what is the issue?

POSThandler method just like you do inGETmethod handler - something like ` return "userSuccess";` assuming that you have auserSuccess.jsp. It is the nature of HTTP that when you do a POST request you get the result of the request i.e. request and response are connected. – Boris Treukhov Dec 9 '12 at 10:20