> Linux服务器 > Tomcat >

Tomcat学习之Engine

Enginetomcat engine是一个完整的Servlet容器,其下面拥有多个虚拟主机,它的责任就是将用户请求分配给一个虚拟上机处理。接口Engine代表一个Servlet引擎,其实现类是StandardEngine,先来看看构造方法

 

[html] view plaincopyprint?
  1. public StandardEngine() {  
  2.   
  3.     super();  
  4.     pipeline.setBasic(new StandardEngineValve());  
  5.     /* Set the jmvRoute using the system property jvmRoute */  
  6.     try {  
  7.         setJvmRoute(System.getProperty("jvmRoute"));  
  8.     } catch(Exception ex) {  
  9.         log.warn(sm.getString("standardEngine.jvmRouteFail"));  
  10.     }  
  11.     // By default, the engine will hold the reloading thread  
  12.     backgroundProcessorDelay = 10;  
  13.   
  14. }  
这个方法在Digester解析Server.xml时会调用,它首先设置一个基本阀门,然后设置JVMRoute,这个在cluster中会用到,然后为backgroundProcessorDelay赋初值,backgroundProcessorDelay的含义在前面有讲过。

 

来看看这个基本阀门(StandardEngineValve)做了哪些事,这里面最重要的是它的invoke方法

 

[html] view plaincopyprint?
  1. public final void invoke(Request request, Response response)  
  2.        throws IOException, ServletException {  
  3.   
  4.        // Select the Host to be used for this Request  
  5.        Host host = request.getHost();  
  6.        if (host == null) {  
  7.            response.sendError  
  8.                (HttpServletResponse.SC_BAD_REQUEST,  
  9.                 sm.getString("standardEngine.noHost",   
  10.                              request.getServerName()));  
  11.            return;  
  12.        }  
  13.        if (request.isAsyncSupported()) {  
  14.            request.setAsyncSupported(host.getPipeline().isAsyncSupported());  
  15.        }  
  16.   
  17.        // Ask this Host to process this request  
  18.        host.getPipeline().getFirst().invoke(request, response);  
  19.   
  20.    }  
只做了两件事:

 

(1)选择一个主机来处理用户请求

(2)如果请求是异步的,设置异步标志位

至于引擎的初始化和启动很简单,前面有讲过Service的初始化会先初始化容器,再初始化连接器。对容器的初始化首先就会初始化顶级容器,也就是engine,引擎的启动也是在Service的启动中完成的。对于容器的整个初始化和启动过程到时会单独分析。

来看看engine的配置

 

[html] view plaincopyprint?
  1. <Engine name="Catalina" defaultHost="localhost">  
  2.       <Realm className="org.apache.catalina.realm.LockOutRealm">  
  3.         <Realm className="org.apache.catalina.realm.UserDatabaseRealm"  
  4.                resourceName="UserDatabase"/>  
  5.       </Realm>  
  6.   
  7.       <Host name="localhost"  appBase="webapps" unpackWARs="true" autoDeploy="true">  
  8.         <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"    
  9.                prefix="localhost_access_log." suffix=".txt"  
  10.                pattern="%h %l %u %t "%r" %s %b" resolveHosts="false"/>  
  11.   
  12.       </Host>  
  13. </Engine>  
name属性是引擎的逻辑名称,在日志和错误消息中会用到,在同一台服务器上有多个Service时,name必须唯一。

 

defaultHost指定默认主机,如果没有分配哪个主机来执行用户请求,由这个值所指定的主机来处理,这个值必须和<Host>元素中的其中一个相同。

Engine里面除了可以指定属性之外,还可以有其它组件,比如:log,listener,filter,realm等,后面会单独分析.

(责任编辑:IT)