Blame | Last modification | View Log | Download | RSS feed
Licensed to the Apache Software Foundation (ASF) under one or morecontributor license agreements. See the NOTICE file distributed withthis work for additional information regarding copyright ownership.The ASF licenses this file to You under the Apache License, Version 2.0(the "License"); you may not use this file except in compliance withthe License. You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.Tomcat Startup SequenceSequence 1. Start from Command LineClass: org.apache.catalina.startup.BootstrapWhat it does:a) Set up classloaderscommonLoader (common)-> System LoadersharedLoader (shared)-> commonLoader -> System LoadercatalinaLoader(server) -> commonLoader -> System Loader(by default the commonLoader is used for thesharedLoader and the serverLoader)b) Load startup class (reflection)org.apache.catalina.startup.CatalinasetParentClassloader -> sharedLoaderThread.contextClassloader -> catalinaLoaderc) Bootstrap.daemon.init() completeSequence 2. Process command line argument (start, stop)Class: org.apache.catalina.startup.Bootstrap (assume command->start)What it does:a) Catalina.setAwait(true);b) Catalina.load()b1) initDirs() -> set properties likecatalina.homecatalina.base == catalina.home (most cases)b2) initNamingsetProperty(javax.naming.Context.INITIAL_CONTEXT_FACTORY,org.apache.naming.java.javaURLContextFactory ->default)b3) createStartDigester()Configures a digester for the main server.xml elements likeorg.apache.catalina.core.StandardServer (can change of course :)org.apache.catalina.deploy.NamingResourcesStores naming resources in the J2EE JNDI treeorg.apache.catalina.LifecycleListenerimplements events for start/stop of major componentsorg.apache.catalina.core.StandardServiceThe single entry for a set of connectors,so that a container can listen to multiple connectorsie, single entryorg.apache.catalina.ConnectorConnectors to listen for incoming requests onlyIt also adds the following rulesets to the digesterNamingRuleSetEngineRuleSetHostRuleSetContextRuleSetb4) Load the server.xml and parse it using the digesterParsing the server.xml using the digester is an automaticXML-object mapping tool, that will create the objects defined in server.xmlStartup of the actual container has not started yet.b5) Assigns System.out and System.err to the SystemLogHandler classb6) Calls initialize on all components, this makes each object register itself with theJMX agent.During the process call the Connectors also initialize the adapters.The adapters are the components that do the request pre-processing.Typical adapters are HTTP1.1 (default if no protocol is specified,org.apache.coyote.http11.Http11NioProtocol)AJP1.3 for mod_jk etc.c) Catalina.start()c1) Starts the NamingContext and binds all JNDI references into itc2) Starts the services under <Server> which are:StandardService -> starts Engine (ContainerBase -> Realm,Cluster etc)c3) StandardHost (started by the service)Configures an ErrorReportValve to do proper HTML output for different HTTPerrors codesStarts the Valves in the pipeline (at least the ErrorReportValve)Configures the StandardHostValve,this valves ties the Webapp Class loader to the thread contextit also finds the session for the requestand invokes the context pipelineStarts the HostConfig componentThis component deploys all the webapps(webapps & conf/Catalina/localhost/*.xml)HostConfig will create a Digester for your context, this digesterwill then invoke ContextConfig.start()The ContextConfig.start() will process the default web.xml (conf/web.xml)and then process the applications web.xml (WEB-INF/web.xml)c4) During the lifetime of the container (StandardEngine) there is a background thread thatkeeps checking if the context has changed. If a context changes (timestamp of war file,context xml file, web.xml) then a reload is issued (stop/remove/deploy/start)d) Tomcat receives a request on an HTTP portd1) The request is received by a separate thread which is waiting in the ThreadPoolExecutorclass. It is waiting for a request in a regular ServerSocket.accept() method.When a request is received, this thread wakes up.d2) The ThreadPoolExecutor assigns the a TaskThread to handle the request.It also supplies a JMX object name to the catalina container (not used I believe)d3) The processor to handle the request in this case is Coyote Http11Processor,and the process method is invoked.This same processor is also continuing to check the input stream of the socketuntil the keep alive point is reached or the connection is disconnected.d4) The HTTP request is parsed using an internal buffer class (Http11InputBuffer)The buffer class parses the request line, the headers, etc and store the result in aCoyote request (not an HTTP request) This request contains all the HTTP info, suchas servername, port, scheme, etc.d5) The processor contains a reference to an Adapter, in this case it is theCoyoteAdapter. Once the request has been parsed, the Http11Processorinvokes service() on the adapter. In the service method, the Request contains aCoyoteRequest and CoyoteResponse (null for the first time)The CoyoteRequest(Response) implements HttpRequest(Response) and HttpServletRequest(Response)The adapter parses and associates everything with the request, cookies, the context through aMapper, etcd6) When the parsing is finished, the CoyoteAdapter invokes its container (StandardEngine)and invokes the invoke(request,response) method.This initiates the HTTP request into the Catalina container starting at the engine leveld7) The StandardEngine.invoke() simply invokes the container pipeline.invoke()d8) By default the engine only has one valve the StandardEngineValve, this valve simplyinvokes the invoke() method on the Host pipeline (StandardHost.getPipeLine())d9) the StandardHost has two valves by default, the StandardHostValve and the ErrorReportValved10) The standard host valve associates the correct class loader with the current threadIt also retrieves the Manager and the session associated with the request (if there is one)If there is a session access() is called to keep the session alived11) After that the StandardHostValve invokes the pipeline on the context associatedwith the request.d12) The first valve that gets invoked by the Context pipeline is the FormAuthenticatorvalve. Then the StandardContextValve gets invoke.The StandardContextValve invokes any context listeners associated with the context.Next it invokes the pipeline on the Wrapper component (StandardWrapperValve)d13) During the invocation of the StandardWrapperValve, the JSP wrapper (Jasper) gets invokedThis results in the actual compilation of the JSP.And then invokes the actual servlet.e) Invocation of the servlet class