serverStartup.txt
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:8k
源码类别:

Java编程

开发平台:

Java

  1.   Licensed to the Apache Software Foundation (ASF) under one or more
  2.   contributor license agreements.  See the NOTICE file distributed with
  3.   this work for additional information regarding copyright ownership.
  4.   The ASF licenses this file to You under the Apache License, Version 2.0
  5.   (the "License"); you may not use this file except in compliance with
  6.   the License.  You may obtain a copy of the License at
  7.       http://www.apache.org/licenses/LICENSE-2.0
  8.   Unless required by applicable law or agreed to in writing, software
  9.   distributed under the License is distributed on an "AS IS" BASIS,
  10.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11.   See the License for the specific language governing permissions and
  12.   limitations under the License.
  13. Tomcat 5 Startup Sequence
  14. Sequence 1. Start from Command Line
  15. Class: org.apache.catalina.startup.Bootstrap
  16. What it does:
  17. a) Set up classloaders 
  18. commonLoader (common)-> System Loader
  19. sharedLoader (shared)-> commonLoader -> System Loader
  20. catalinaLoader(server) -> commonLoader -> System Loader
  21. b) Load startup class (reflection)
  22. org.apache.catalina.startup.Catalina
  23. setParentClassloader -> sharedLoader
  24. Thread.contextClassloader -> catalinaLoader
  25. c) Bootstrap.daemon.init() complete
  26. Sequence 2. Process command line argument (start, startd, stop, stopd)
  27. Class: org.apache.catalina.startup.Bootstrap (assume command->start)
  28. What it does: 
  29. a) Catalina.setAwait(true);
  30. b) Catalina.load()
  31. b1) initDirs() -> set properties like 
  32.                   catalina.home
  33.                   catalina.base == catalina.home (most cases)
  34. b2) initNaming
  35. setProperty(javax.naming.Context.INITIAL_CONTEXT_FACTORY,
  36.     org.apache.naming.java.javaURLContextFactory ->default)
  37. b3) createStartDigester() 
  38. Configures a digester for the main server.xml elements like
  39. org.apache.catalina.core.StandardServer (can change of course :)
  40. org.apache.catalina.deploy.NamingResources
  41. Stores naming resources in the J2EE JNDI tree
  42. org.apache.catalina.LifecycleListener
  43. implements events for start/stop of major components
  44. org.apache.catalina.core.StandardService
  45. The single entry for a set of connectors,
  46. so that a container can listen to multiple connectors
  47. ie, single entry
  48. org.apache.coyote.tomcat5.CoyoteConnector
  49. Connectors to listen for incoming requests only
  50. It also adds the following rulesets to the digester
  51. NamingRuleSet
  52. EngineRuleSet
  53. HostRuleSet
  54. ContextRuleSet
  55. b4) Load the server.xml and parse it using the digester
  56.     Parsing the server.xml using the digester is an automatic
  57.     XML-object mapping tool, that will create the objects defined in server.xml
  58.     Startup of the actual container has not started yet.
  59. b5) Assigns System.out and System.err to the SystemLogHandler class
  60. b6) Calls intialize on all components, this makes each object register itself with the 
  61.     JMX agent.
  62.     During the process call the Connectors also initialize the adapters.
  63.     The adapters are the components that do the request pre-processing.
  64.     Typical adapters are HTTP1.1 (default if no protocol is specified,
  65.     org.apache.coyote.http11.Http11Protocol)
  66.     AJP1.3 for mod_jk etc.
  67. c) Catalina.start()
  68. c1) Starts the NamingContext and binds all JNDI references into it
  69. c2) Starts the services under <Server> which are:
  70. StandardService -> starts Engine (ContainerBase ->Logger,Loader,Realm,Cluster etc)
  71. c3) StandardHost (started by the service)
  72. Configures a ErrorReportValvem to do proper HTML output for different HTTP 
  73. errors codes
  74. Starts the Valves in the pipeline (at least the ErrorReportValve)
  75. Configures the StandardHostValve, 
  76. this valves ties the Webapp Class loader to the thread context
  77. it also finds the session for the request
  78. and invokes the context pipeline
  79. Starts the HostConfig component
  80. This component deploys all the webapps
  81. (webapps & conf/Catalina/localhost/*.xml)
  82. Webapps are installed using the deployer (StandardHostDeployer)
  83. The deployer will create a Digester for your context, this digester
  84. will then invoke ContextConfig.start()
  85. The ContextConfig.start() will process the default web.xml (conf/web.xml)
  86. and then process the applications web.xml (WEB-INF/web.xml)
  87. c4) During the lifetime of the container (StandardEngine) there is a background thread that 
  88.     keeps checking if the context has changed. If a context changes (timestamp of war file, 
  89.     context xml file, web.xml) then a reload is issued (stop/remove/deploy/start)
  90.     
  91. d) Tomcat receives a request on an HTTP port
  92.     d1) The request is received by a separate thread which is waiting in the PoolTcpEndPoint 
  93.          class. It is waiting for a request in a regular ServerSocket.accept() method.
  94.          When a request is received, this thread wakes up.
  95.     d2) The PoolTcpEndPoint assigns the a TcpConnection to handle the request. 
  96.         It also supplies a JMX object name to the catalina container (not used I believe)
  97.     d3) The processor to handle the request in this case is Coyote Http11Processor, 
  98.         and the process method is invoked.
  99.         This same processor is also continuing to check the input stream of the socket
  100.         until the keep alive point is reached or the connection is disconnected.
  101.     d4) The HTTP request is parsed using an internal buffer class (Coyote Http11 Internal Buffer)
  102.         The buffer class parses the request line, the headers, etc and store the result in a 
  103.         Coyote request (not an HTTP request) This request contains all the HTTP info, such
  104.         as servername, port, scheme, etc.
  105.     d5) The processor contains a reference to an Adapter, in this case it is the 
  106.         Coyote Tomcat 5 Adapter. Once the request has been parsed, the Http11 processor
  107.         invokes service() on the adapter. In the service method, the Request contains a 
  108.         CoyoteRequest and CoyoteRespons (null for the first time)
  109.         The CoyoteRequest(Response) implements HttpRequest(Response) and HttpServletRequest(Response)
  110.         The adapter parses and associates everything with the request, cookies, the context through a 
  111.         Mapper, etc
  112.     d6) When the parsing is finished, the CoyoteAdapter invokes its container (StandardEngine)
  113.         and invokes the invoke(request,response) method.
  114.         This initiates the HTTP request into the Catalina container starting at the engine level
  115.     d7) The StandardEngine.invoke() simply invokes the container pipeline.invoke()
  116.     d8) By default the engine only has one valve the StandardEngineValve, this valve simply
  117.         invokes the invoke() method on the Host pipeline (StandardHost.getPipeLine())
  118.     d9) the StandardHost has two valves by default, the StandardHostValve and the ErrorReportValve
  119.     d10) The standard host valve associates the correct class loader with the current thread
  120.          It also retrives the Manager and the session associated with the request (if there is one)
  121.          If there is a session access() is called to keep the session alive
  122.     d11) After that the StandardHostValve invokes the pipeline on the context associated
  123.          with the request.
  124.     d12) The first valve that gets invoked by the Context pipeline is the FormAuthenticator
  125.          valve. Then the StandardContextValve gets invoke.
  126.          The StandardContextValve invokes any context listeners associated with the context.
  127.          Next it invokes the pipeline on the Wrapper component (StandardWrapperValve)
  128.     d13) During the invokation of the StandardWrapperValve, the JSP wrapper (Jasper) gets invoked
  129.          This results in the actual compilation of the JSP.
  130.          And then invokes the actual servlet.
  131. e) Invokation of the servlet class
  132.          
  133.          
  134.          
  135.     
  136.         
  137.         
  138.         
  139.