Stijn Geukens
Stijn Geukens

Reputation: 15628

Duplicate form submission in Wicket

In Spring I usually did a redirect-after-submit to prevent the user of submitting a form multiple times by pressing F5. Does wicket handle this out of the box or do I also need to take this into account when developing my form pages?

I don't have a problem with this yet but I would like to know in advance.

Upvotes: 0

Views: 1344

Answers (1)

rotsch
rotsch

Reputation: 1939

Yes, Wicket handles this automatically because of its stateful nature and page versioning. See also this answer of your previous question: https://stackoverflow.com/q/8082042/532331

Upvotes: 2

Related Questions