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

Method doPost

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

Delegate the POST 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

128 * @exception ServletException if an error occurs
129 */
130 @Override
131 public void doPost(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException {
132 if (debug > 0) {
133 log("SSIServlet.doPost()");
134 }
135 requestHandler(req, res);
136 }
137
138
139 /**

Callers

nothing calls this directly

Calls 2

requestHandlerMethod · 0.95
logMethod · 0.65

Tested by

no test coverage detected