Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the best way of avoiding duplicate form submission in Spring. Does this framework provide any special feature to handle this problem (for example as the Synchronizer Token in Struts)?

Thanks.

share|improve this question
1  
This is not specific to any framework, but you can prevent duplicate submission with jQuery. stackoverflow.com/questions/2830542/… – Nathan Long Jan 25 '11 at 15:40

3 Answers

up vote 11 down vote accepted

There are different ways to avoid double submits, which can be combined:

  1. Use JavaScript to disable the button a few ms after click. This will avoid multiple submits being caused by impatient users clicking multiple times on the button.

  2. Send a redirect after submit, this is known as Post-Redirect-Get (PRG) pattern. This will avoid multiple submits being caused by users pressing F5 on the result page and ignoring the browser warning that the data will be resend, or navigating back and forth by browser back/forward buttons and ignoring the same warning.

  3. Generate an unique token when the page is requested and put in both the session scope and as hidden field of the form. During processing, check if the token is there and then remove it immediately from the session and continue processing. If the token is not there, then block processing. This will avoid the aforementioned kinds of problems.

In Spring you can use RedirectView as implementation of the PRG pattern (as described in point 2). The other two points needs to be implemented yourself.

share|improve this answer
Hi I applied PRG pattern. it works fine. but i need to pass a message to Get method like "User Id 1001 created successfully". for that i have a controller class level variable that will set its value at post method and will get it at GET method. This will create problem for concurrent user. How can i avoid this issue? – Dhrumil Shah Oct 5 '11 at 7:23
@Dhrumil: Store it in the session or a cookie instead. – BalusC Jun 6 '12 at 12:16
no its takes some more processing time.. instead of our manual coding framework should provide some feature like Tokens that Struts2.0 provides default. – Dhrumil Shah Jun 7 '12 at 10:48

Just do a redirect after post. After a form submission is successful, when returning your ModelAndView make sure the View is a RedirectView. From the user's POV, they submit the form, and then are redirected to make a "GET" to another URL. This way they won't double submit.

Note that when using a Redirect View, Model Attributes get exposed in the URL as the parameters. So you might want to keep the attributes as thin as possible. What I typically do is show the user a page that doesn't really contain any unique information, just a "confirm" message.

share|improve this answer

this page seems to answer your question (for the token issue, I mean. The javascript and post-redirect-get parts of the question aren't covered here):

http://explodingjava.blogspot.com/2009/03/spring-mvc-synchronizer-token.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.