- Call saveToken(request) in your Action class
- Forward to the JSP displaying the form.
- Have the Action check if isTokenValid(request)
- If true, process request then call resetToken(); otherwise, we're dealing with a double-submit and will skip processing it.
- Struts will generate a unique value (the token) and keep it in the session context
- When the JSP is rendered, Struts inserts the token as a hidden field
- The hidden field token is submitted along with the rest of the form and isValidToken() checks the value that came in with the current request against the value that was saved in the session context by the most recent saveToken() call. If the two token values match, the submission is valid.