Multiple click on button on browser, sends multiple request to server.
The easiest way to solve it is to stop multiple click on browser by JavaScript.
Can anybody suggest what could be better way to solve it?
For easiness i'll give litter design overview
BROWSER ---to---> WEB[all controllers] ----to-->rest call to service.
Adding More information: Note: we are sending CSRF token
Step 1: we are on /page/show - GET
Step 2: we Post the form /page/show -POST [srf token included in it]
Step 3: ON-SUCCESSFUL completion of save we redirect again to /page/show
Thanks