1.

What Is The Difference Between The Get And Post Method?

Answer»

Another simple but frequently asked question on Java support interviews. The main DIFFERENCE between the GET and POST is that GET is both idempotent and safe but POST is not. You can fire GET request multiple time and it will give the same result but multiple POST SUBMISSION should always be avoided. GET is ALSO used to read data from SERVER and POST is used to send data to the server.

Another simple but frequently asked question on Java support interviews. The main difference between the GET and POST is that GET is both idempotent and safe but POST is not. You can fire GET request multiple time and it will give the same result but multiple POST submission should always be avoided. GET is also used to read data from server and POST is used to send data to the server.



Discussion

No Comment Found