WebContainer
Tomcat Jar
API
Jar
Inheritance hierarchy Request Object
How web Container calls service method?
/* No need to override this */
public void service(ServletRequest req,ServletResponse res) throws ServletException, IOException
/* No need to override this */
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
/*
Internally, it calls protected do*** method of
abstract HttpServlet Class
*/Servlet - JDBC Integration
ServletException
Last updated