解析Tomcat内部结构和请求过程

jopen 8年前

Tomcat

Tomcat是一个JSP/Servlet容器。其作为Servlet容器,有三种工作模式:独立的Servlet容器、进程内的Servlet容器和进程外的Servlet容器。

Tomcat的组织结构

  • Tomcat是一个基于组件的服务器,它的构成组件都是可配置的,其中最外层的是Catalina servlet容器,其他组件按照一定的格式要求配置在这个顶层容器中。 Tomcat的各种组件都是在Tomcat安装目录下的/conf/server.xml文件中配置的。

由Server.xml的结构看Tomcat的体系结构

<Server>                                                //顶层类元素,可以包括多个Service          <Service>                                           //顶层类元素,可包含一个Engine,多个Connecter          <Connector>                                     //连接器类元素,代表通信接口                  <Engine>                                //容器类元素,为特定的Service组件处理客户请求,要包含多个Host                          <Host>                          //容器类元素,为特定的虚拟主机组件处理客户请求,可包含多个Context                                  <Context>               //容器类元素,为特定的Web应用处理所有的客户请求                                  </Context>                          </Host>                  </Engine>          </Connector>      </Service>  </Server>

实际原码如下:

<?xml version='1.0' encoding='utf-8'?>  <Server port="8005" shutdown="SHUTDOWN">    <Listener className="org.apache.catalina.startup.VersionLoggerListener" />    <!-- Security listener. Documentation at /docs/config/listeners.html    <Listener className="org.apache.catalina.security.SecurityListener" />    -->    <!--APR library loader. Documentation at /docs/apr.html -->    <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />    <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->    <Listener className="org.apache.catalina.core.JasperListener" />    <!-- Prevent memory leaks due to use of particular java/javax APIs-->    <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />    <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />    <!-- Global JNDI resources         Documentation at /docs/jndi-resources-howto.html    -->    <GlobalNamingResources>      <!-- Editable user database that can also be used by           UserDatabaseRealm to authenticate users      -->      <Resource name="UserDatabase" auth="Container"                type="org.apache.catalina.UserDatabase"                description="User database that can be updated and saved"                factory="org.apache.catalina.users.MemoryUserDatabaseFactory"                pathname="conf/tomcat-users.xml" />    </GlobalNamingResources>    <!-- A "Service" is a collection of one or more "Connectors" that share         a single "Container" Note:  A "Service" is not itself a "Container",         so you may not define subcomponents such as "Valves" at this level.         Documentation at /docs/config/service.html     -->    <Service name="Catalina">      <!--The connectors can use a shared executor, you can define one or more named thread pools-->      <!--      <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"          maxThreads="150" minSpareThreads="4"/>      -->      <!-- A "Connector" represents an endpoint by which requests are received           and responses are returned. Documentation at :           Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)           Java AJP  Connector: /docs/config/ajp.html           APR (HTTP/AJP) Connector: /docs/apr.html           Define a non-SSL HTTP/1.1 Connector on port 8080      -->      <Connector port="8080" protocol="HTTP/1.1"                 connectionTimeout="20000"                 redirectPort="8443" />      <!-- A "Connector" using the shared thread pool-->      <!--      <Connector executor="tomcatThreadPool"                 port="8080" protocol="HTTP/1.1"                 connectionTimeout="20000"                 redirectPort="8443" />      -->      <!-- Define a SSL HTTP/1.1 Connector on port 8443           This connector uses the BIO implementation that requires the JSSE           style configuration. When using the APR/native implementation, the           OpenSSL style configuration is required as described in the APR/native           documentation -->      <!--      <Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol"                 maxThreads="150" SSLEnabled="true" scheme="https" secure="true"                 clientAuth="false" sslProtocol="TLS" />      -->      <!-- Define an AJP 1.3 Connector on port 8009 -->      <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />      <!-- An Engine represents the entry point (within Catalina) that processes           every request.  The Engine implementation for Tomcat stand alone           analyzes the HTTP headers included with the request, and passes them           on to the appropriate Host (virtual host).           Documentation at /docs/config/engine.html -->      <!-- You should set jvmRoute to support load-balancing via AJP ie :      <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">      -->      <Engine name="Catalina" defaultHost="localhost">        <!--For clustering, please take a look at documentation at:            /docs/cluster-howto.html  (simple how to)            /docs/config/cluster.html (reference documentation) -->        <!--        <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>        -->        <!-- Use the LockOutRealm to prevent attempts to guess user passwords             via a brute-force attack -->        <Realm className="org.apache.catalina.realm.LockOutRealm">          <!-- This Realm uses the UserDatabase configured in the global JNDI               resources under the key "UserDatabase".  Any edits               that are performed against this UserDatabase are immediately               available for use by the Realm.  -->          <Realm className="org.apache.catalina.realm.UserDatabaseRealm"                 resourceName="UserDatabase"/>        </Realm>        <Host name="localhost"  appBase="webapps"              unpackWARs="true" autoDeploy="true">          <!-- SingleSignOn valve, share authentication between web applications               Documentation at: /docs/config/valve.html -->          <!--          <Valve className="org.apache.catalina.authenticator.SingleSignOn" />          -->          <!-- Access log processes all example.               Documentation at: /docs/config/valve.html               Note: The pattern used is equivalent to using pattern="common" -->          <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"                 prefix="localhost_access_log." suffix=".txt"                 pattern="%h %l %u %t "%r" %s %b" />        </Host>      </Engine>    </Service>  </Server>

由上可得出Tomcat的体系结构: 图一:Tomcat的体系结构

由上图可看出Tomca的心脏是两个组件:Connecter和Container。一个Container可以选择多个Connecter,多个Connector和一个Container就形成了一个Service。Service可以对外提供服务,而Server服务器控制整个Tomcat的生命周期。

  • 组件的生命线“Lifecycle”

    Service 和 Server 管理它下面组件的生命周期。 Tomcat 中组件的生命周期是通过 Lifecycle 接口来控制的,组件只要继承这个接口并实现其中的方法就可以统一被拥有它的组件控制了,这样一层一层的直到一个最高级的组件就可以控制 Tomcat 中所有组件的生命周期,这个最高的组件就是 Server,而控制 Server 的是 Startup,也就是您启动和关闭 Tomcat。

Tomca的两大组件:Connecter和Container

Connecter组件

一个Connecter将在某个指定的端口上侦听客户请求,接收浏览器的发过来的 tcp 连接请求,创建一个 Request 和 Response 对象分别用于和请求端交换数据,然后会产生一个线程来处理这个请求并把产生的 Request 和 Response 对象传给处理Engine(Container中的一部分),从Engine出获得响应并返回客户。 Tomcat中有两个经典的Connector,一个直接侦听来自Browser的HTTP请求,另外一个来自其他的WebServer请求。Cotote HTTP/1.1 Connector在端口8080处侦听来自客户Browser的HTTP请求,Coyote JK2 Connector在端口8009处侦听其他Web Server的Servlet/JSP请求。 Connector 最重要的功能就是接收连接请求然后分配线程让 Container 来处理这个请求,所以这必然是多线程的,多线程的处理是 Connector 设计的核心。

Container组件

Container的体系结构如下: 图二:Container的体系结构 Container是容器的父接口,该容器的设计用的是典型的责任链的设计模式,它由四个自容器组件构成,分别是Engine、Host、Context、Wrapper。这四个组件是负责关系,存在包含关系。通常一个Servlet class对应一个Wrapper,如果有多个Servlet定义多个Wrapper,如果有多个Wrapper就要定义一个更高的Container,如Context。 Context 还可以定义在父容器 Host 中,Host 不是必须的,但是要运行 war 程序,就必须要 Host,因为 war 中必有 web.xml 文件,这个文件的解析就需要 Host 了,如果要有多个 Host 就要定义一个 top 容器 Engine 了。而 Engine 没有父容器了,一个 Engine 代表一个完整的 Servlet 引擎。

  • Engine 容器 Engine 容器比较简单,它只定义了一些基本的关联关系
  • Host 容器 Host 是 Engine 的字容器,一个 Host 在 Engine 中代表一个虚拟主机,这个虚拟主机的作用就是运行多个应用,它负责安装和展开这些应用,并且标识这个应用以便能够区分它们。它的子容器通常是 Context,它除了关联子容器外,还有就是保存一个主机应该有的信息。
  • Context 容器 Context 代表 Servlet 的 Context,它具备了 Servlet 运行的基本环境,理论上只要有 Context 就能运行 Servlet 了。简单的 Tomcat 可以没有 Engine 和 Host。Context 最重要的功能就是管理它里面的 Servlet 实例,Servlet 实例在 Context 中是以 Wrapper 出现的,还有一点就是 Context 如何才能找到正确的 Servlet 来执行它呢? Tomcat5 以前是通过一个 Mapper 类来管理的,Tomcat5 以后这个功能被移到了 request 中,在前面的时序图中就可以发现获取子容器都是通过 request 来分配的。
  • Wrapper 容器 Wrapper 代表一个 Servlet,它负责管理一个 Servlet,包括的 Servlet 的装载、初始化、执行以及资源回收。Wrapper 是最底层的容器,它没有子容器了,所以调用它的 addChild 将会报错。 Wrapper 的实现类是 StandardWrapper,StandardWrapper 还实现了拥有一个 Servlet 初始化信息的 ServletConfig,由此看出 StandardWrapper 将直接和 Servlet 的各种信息打交道。

Tomcat 中其它组件

Tomcat 还有其它重要的组件,如安全组件 security、logger 日志组件、session、mbeans、naming 等其它组件。这些组件共同为 Connector 和 Container 提供必要的服务。

Tomcat Server处理一个HTTP请求的过程

图三:Tomcat Server处理一个HTTP请求的过程

Tomcat Server处理一个HTTP请求的过程

1、用户点击网页内容,请求被发送到本机端口8080,被在那里监听的Coyote HTTP/1.1 Connector获得。 2、Connector把该请求交给它所在的Service的Engine来处理,并等待Engine的回应。 3、Engine获得请求localhost/test/index.jsp,匹配所有的虚拟主机Host。 4、Engine匹配到名为localhost的Host(即使匹配不到也把请求交给该Host处理,因为该Host被定义为该Engine的默认主机),名为localhost的Host获得请求/test/index.jsp,匹配它所拥有的所有的Context。Host匹配到路径为/test的Context(如果匹配不到就把该请求交给路径名为“ ”的Context去处理)。 5、path=“/test”的Context获得请求/index.jsp,在它的mapping table中寻找出对应的Servlet。Context匹配到URL PATTERN为*.jsp的Servlet,对应于JspServlet类。 6、构造HttpServletRequest对象和HttpServletResponse对象,作为参数调用JspServlet的doGet()或doPost().执行业务逻辑、数据存储等程序。 7、Context把执行完之后的HttpServletResponse对象返回给Host。 8、Host把HttpServletResponse对象返回给Engine。 9、Engine把HttpServletResponse对象返回Connector。 10、Connector把HttpServletResponse对象返回给客户Browser。

来自: http://www.cnblogs.com/zhouyuqin/p/5143121.html