Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Somebody told me that JSF 2.0 automatically handles multiple submission problem. Is that right? If yes, how does JSF 2.0 do that? If no, what are the things that must taken care of, so that you don't leave any pitfall while handling this problem?

Thanks.

share|improve this question

2 Answers

up vote 4 down vote accepted

This is requested and maintained by JSF spec issue 559. As it currently stands, it's not there yet, but it is targeted for the upcoming JSF 2.2.

Until then, the Seam's <s:token> is your best solution which not only prevents CSRF (which is not strictly necessary anymore since JSF 2.1 as per JSF impl issue 812), but also double submits.

share|improve this answer
We are not using Seam. We are using JSF 2.0 and Prime Faces. Any idea or suggestion? – Bhesh Gurung May 5 '11 at 20:17
Do you want to handle this clientside or serverside? If clientside, check the JavaScript setTimeout() approach in this answer. If serverside, I think checking and setting a boolean property in the action method of a view scoped bean is the easiest. For a more advanced solution, using a fullworthy token, you may get some ideas out of this article. – BalusC May 5 '11 at 20:56
thanks for the answer and the links, they are helpful. – Bhesh Gurung May 6 '11 at 18:28
You're welcome. – BalusC May 6 '11 at 18:29

<h:commandButton onclick ="setTimeout('document.getElementById(\'' + this.id + '\').disabled=true;', 50);setTimeout('document.getElementById(\'' + this.id + '\').disabled=false;', 500);" />

Thought of improving upon your simple yet elagent solution. I think we should enable the submit button after some time. I'm sure you would have thought of this, but this is for other newbie readers like me :-)

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.