What is Generic Servlet and how it is different from Http
Servlet?
Answer Posted / qim2010
Both these classes are abstract but the differences are
A GenericServlet has a service() method to handle
requests.
The HttpServlet extends GenericServlet and adds support
for HTTP
protocol based methods like doGet(), doPost(), doHead()
etc. All
client requests are handled through the service() method.
The service method dispatches the request to an appropriate
method like doGet(), doPost() etc to handle that request.
HttpServlet also has methods like doHead(), doPut(),
doOptions(),
doDelete(), and doTrace().
GenericServlet is Protocol independent. GenericServlet is
for servlets
that might not use HTTP (for example FTP service).
But HttpServlet is protocol dependent (i.e. HTTP).
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How to get the actual path of servlet in server?
Which HTTP method is non-idempotent?
When jsessionid is created?
Can we override destroy method in servlet?
What is a servlet engine?
What are the different methods involved in generic servlet?
Difference between httpservlet and generic servlets?
Which event is fired at the time of project deployment and undeployment?
Which is the methods of generated servlet?
What is difference between cookies and httpsession?
How the JSP file will be executed on the Server side?
What is servlet and its life cycle?
How do you design microservices?
What are the differences between the servletconfig interface and the servletcontext interface?
How do I use cookies to store session state on the client?