I am implementing the Post-Redirect-Get solution to prevent duplicate form submission when refreshing the page on the browser. My application is a pure Servlet web application.
I have already set it up, but I want to prevent users to access my form success page if there isn't a previous form submission request associated, how would you do that?
I thought about some encoded parameter with a salt but maybe there's a simpler approach?