In the Java Servlet API, all HTTP-specific servlets extend javax.servlet.http.HttpServlet. This class provides specialized methods like doGet(), doPost(), etc. for handling HTTP requests. While you could technically extend GenericServlet, HTTP servlets always extend HttpServlet for HTTP protocol support.