MCPcopy Index your code
hub / github.com/apache/tomcat / start

Method start

java/org/apache/catalina/startup/Bootstrap.java:339–346  ·  view source on GitHub ↗

Start the Catalina daemon. @throws Exception Fatal start error

()

Source from the content-addressed store, hash-verified

337 * @throws Exception Fatal start error
338 */
339 public void start() throws Exception {
340 if (catalinaDaemon == null) {
341 init();
342 }
343
344 Method method = catalinaDaemon.getClass().getMethod("start", (Class<?>[]) null);
345 method.invoke(catalinaDaemon, (Object[]) null);
346 }
347
348
349 /**

Callers

nothing calls this directly

Calls 3

initMethod · 0.95
getMethodMethod · 0.65
invokeMethod · 0.65

Tested by

no test coverage detected