MCPcopy Create free account
hub / github.com/apache/tomcat / service

Method service

java/org/apache/catalina/servlets/DefaultServlet.java:540–548  ·  view source on GitHub ↗
(HttpServletRequest req, HttpServletResponse resp)

Source from the content-addressed store, hash-verified

538
539
540 @Override
541 protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
542
543 if (req.getDispatcherType() == DispatcherType.ERROR) {
544 doGet(req, resp);
545 } else {
546 super.service(req, resp);
547 }
548 }
549
550
551 @Override

Callers

nothing calls this directly

Calls 3

doGetMethod · 0.95
getDispatcherTypeMethod · 0.65
serviceMethod · 0.65

Tested by

no test coverage detected