What is the difference between GenericServlet and HttpServlet?

Technology CommunityCategory: JavaWhat is the difference between GenericServlet and HttpServlet?
VietMX Staff asked 3 years ago

GenericServlet is a generalized and protocol-independent servlet that implements the Servlet and ServletConfig interfaces. Those servlets extending the GenericServlet class shall override the service method. Finally, in order to develop an HTTP servlet for use on the Web that serves requests using the HTTP protocol, your servlet must extend the HttpServlet instead.