what is the difference between doGet() and doPost()?
Answer Posted / giridhar gangapatnam
doGet() doPost()
1)doGet() method can send 1)doPost() method can send
limited amount of data large amount of data.
i.e.upto 256 characters
only.
2)In doGet() method when we 2)In doPost() methodrequest
send request then in Request is passed along withbody
Format there is no body part, part of theRequestFormat.
the request is passed along doPost() method Request
with only Request Format header Format has both body and
part only. header part.
3)doGet() method send limited 3)large amount data has
data because it has only header sent through body part
part,header part has limited of the RequestFormat.
memory to carry the data.
4)doGet() method support book 4)doPost() method doesn't
marks. support book marks.
5)when we send request parameters 5)The requested parameter
in doGet() it will display the in doPost() will not dis
information in URL as a query play the information as
string.so in doGet() data there a query string in URL.so
is no data security. data is secured.
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What are the ways to handle multi-threading in servlets?
What is servletconfig?
What is the workflow of a servlet?
What is the difference between the http servlet and generic servlet?
How to generate the server side programming and the advantages of it over the other languages?
What if you need to span your transaction across multiple servlet invocations?
Why servlet is faster than jsp?
What is meant by a servlet?
When jsessionid is created?
What is servlet invoker?
What are the types of servlets? Explain
What is a servlet?
What is Request Dispatcher?
What are the supporting protocol by HttpServlet ?
How can we create deadlock situation in servlet?