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

Method doGet

java/org/apache/catalina/ssi/SSIServlet.java:112–118  ·  view source on GitHub ↗

Delegate the GET request to our requestHandler() . @param req a value of type 'HttpServletRequest' @param res a value of type 'HttpServletResponse' @exception IOException if an error occurs @exception ServletException if an error occurs

(HttpServletRequest req, HttpServletResponse res)

Source from the content-addressed store, hash-verified

110 * @exception ServletException if an error occurs
111 */
112 @Override
113 public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException {
114 if (debug > 0) {
115 log("SSIServlet.doGet()");
116 }
117 requestHandler(req, res);
118 }
119
120
121 /**

Callers

nothing calls this directly

Calls 2

requestHandlerMethod · 0.95
logMethod · 0.65

Tested by

no test coverage detected