when i click browser refresh button , my page data get saved into database, but i want to avoid this. i am using spring mvc, is there any way to restrict page sumbit.
Hi, you should after saving your data "redirect" the user to avoid this situation
return new ModelAndView("redirect:DummyRedirectPage.html");
Regards,
Dohar