Explain the difference between GET and POST methods?
Answer Posted / alok kumar ranjan
Re. What is the difference between Get and Post Method?
Answer: (1). Get is Default Http Method, but in post method
you should specify the post method implicitly as follows:-
<form action=" " method="post"
(2) In Get Method, data is passed in URL Pattern. But in
post method data is passed with in method body.
(3) In Get Method, Size of URL is limited because of this e
can send only limited amount of data to server using the
get method. But in Post Method, We can send the data
unlimited amount of the data.
(4) Get Method is not secured because data can be seen in
URL. But Post Method is much secured.
(5) Through Get Method, We can not send data to server but
in Post Method, We send the data to server
| Is This Answer Correct ? | 19 Yes | 6 No |
Post New Answer View All Answers
What do you mean by singlethreadmodel interface?
What methodology can be followed to store more number of objects in a remote server?
Explain their methods? Tell me their parameter names also have you used threads in servlet?
Difference between forward() method and sendredirect() method ?
What are the uses of servlets?
Difference between get and post in java servlets?
Can you use javascript in servlets?
What is called Session Tracking?
How do I know if java is running on linux?
Which http method is said to be non-idempotent and idempotent?
What do you mean by web applications?
Explain the role of dispatcherservlet and contextloaderlistener.
What is the difference between 2 types of servlets?
What is the purpose of dispatcherservlet properties?
How a servlet is unloaded?