// See the note of TomcatContainer::addContext
container.addContext(this);
// Is it necessary - doesn't Tomcat Embedded take care of it?
// super.start();
if (context instanceof StandardContext) {
statsProvider = new ModuleStats((StandardContext) context);
}
if (log.isDebugEnabled()) {
log.debug("TomcatWebAppContext started for " + contextPath);
}
} finally {