Difference between GET and POST - Java @ Desk

Monday, May 20, 2013

Difference between GET and POST

GET POST
Data is passed through header. Hence there is a limitation in the amount of data to send. Data is passed in body. Hence large amount of data can be passed.
Get method is not secured, since data is visible in header It is secured because data is not exposed.
Can be bookmarked Cannot be bookmarked
It is idempotent It is non-idempotent






No comments:

Post a Comment