Spring IsFormSubmission with Annotations
How to handle isFormSubmission
with Spring annotations, is there any annotatio开发者_如何学Cn available to block duplicate submission?
No, there isn't. And you can't detect it with isFormSubmission()
- it will tell you only of the request is using POST
or not.
You can use client-side code to disable duplicate submission (disable the submit button when it's pressed)
精彩评论