I have a Spring boot application with an html form that calls post mapping in my controller. In that post mapping, it redirects to a get mapping after it's processing. My problem with this now is when the back button of the browser is clicked, it redirects back to the same page the same number as how many times the post was called. So if I do update record 5 times in that page and then click back button , it would take 5 clicks to the back button before it proceeds back to prior page. I'm still new to this, Can anyone point me to the right direction?