In servlets, Why do we need both GET and POST method
implementations?
Answer Posted / upender
I agree the above two answers. Here is my view.
HTTP Get method perform the following scenarios.
1) By default form submission without specifying method
name
2)if you click on hyperlinkS or images
3) or if you type url in address bar in brower
and Get there is no side effect. simple it get the resource
form serverside. Some time we require to deal with headers
Get can send only character data and limited data.and also
It can't support binary data.
POST method can support binary data and bulk data.
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
Explain servlet.
Differentiate between the web server and application server?
What is api in servlet?
Explain the lifecycle of a servlet?
How do you configure a centralized error handler in servlets?
Explain web application directory arrangement?
What is called Session Tracking?
What is difference between get and post method?
What is servlet interface?
Why is Servlet so popular?
What must be implemented by all servlets?
What are the steps that are required to handle the multi-threading?
Explain the servlet context.
What is the life cycle of a servlet?
What is the main purpose of java servlets?