Understanding GET and POST
Last updated
Was this helpful?
Last updated
Was this helpful?
Ex : Just change the method from post to get in the form and hit the URL.
1) All the parameters are sent as query parameters in the GET request.
2) Refresh the browser and the GET operation will have same effect , browser will not warn us.
On Refreshing we got the confirm Resubmission message from the browser :
If we do not override doGet or doPost method then tomcat will call its own doGet or doPost methods.