Tuesday, May 14, 2013

What is the difference between HttpServlet and GenericServlet?


GenericServlet:
A GenericServlet has a service() method to
handle requests

Protocol independent.

HttpServlet :

The HttpServlet extends GenericServlet and adds support for HTTP
protocol based methods like doGet(), doPost(), doHead() etc.

Protocol dependent.

No comments:

Post a Comment