In this section, we will differentiate the GET and POST method of servlet.
GET - It is HTTP method, asks to get thing at the requested URL.
POST - It is HTTP method, asks the server to accept the body info attached to the request, and give it to the thing at the requested URL. It is like GET with extra info sent with the request.
Difference :