Tomcat启动过程
Tomcat启动类入口是org.apache.catalina.startup.Bootstrap类,里面有main方法,还有静态代码块,初始化运行环境变量:
1 | static { |
Main方法:
1 | public static void main(String args[]) { |
初始化整个环境
bootstrap.init();
1 | public void init() throws Exception { |
1 | private void load(String[] arguments) throws Exception { |
调用LifecyleBase方法初始化
1 | public final synchronized void init() throws LifecycleException { |
initInternal();每个容器继承LifecycleMBeanBase。实现自己的初始化。
初始化各个容器组件
Server->Service->(Engine/Executor/Connector->ProtocolHandler->EndPoint->绑定协议)
这里没有一直初始化Context下去,到Engine就停止,后面的子容器都是在启动的时候初始化的。
初始化Server
1 | protected void initInternal() throws LifecycleException { |
这个方法又会初始化service
初始化Service
1 |
|
初始化Service时,也会初始化线程池,Engine和Connector。
初始化Engine
1 |
|
直接调用父类ContainerBase的方法
1 |
|
初始化Connector
1 | //连接器初始化 |
这里同时初始化了适配器CoyoteAdapter和AbstractProtocol.ProtocolHandler
而ProtocolHandler又会初始化EndPoint监听器
1 |
|
后面就是绑定协议:
1 | public abstract void bind() throws Exception; |
之后就是实例化ServerSocketl了。
启动服务
main方法中,启动daemon.start();其实是启动Catalina的start方法,之后启动服务:
1 | public void start() throws Exception { |
服务启动,会调用LifecycleBean的start方法
1 | public final synchronized void start() throws LifecycleException { |
启动子组件
启动server
1 |
|
启动service
1 | protected void startInternal() throws LifecycleException { |
启动Engine
1 |
|
这里就不在启动子容器,而是执行父类方法。
1 | protected synchronized void startInternal() throws LifecycleException { |
启动Connector
1 | public Connector(String protocol) { |
连接器构造方法中实例化了一个ProtocolHandler协议处理器,用来处理请求。然后在启动方法中启动协议处理器。
1 |
|
这些容器启动流程如下:
启动子容器
Host
1 |
|
继续调用父类的startInternal
分层调用,子容器再掉父类startInternal,直到Context->Wrapper->没有子容器。结束
1 | //设置生命周期 后会激发监听器。 |
激活监听器后,回执行HostConfig中执行start
1 | public void start() { |
Context
前面context部署完成后启动,StandardContext类中的启动方法:
1 |
|
上面设置生命周期状态后,启动监听器,会执行ContextConfig中的webConfig()方法:
1 | protected void webConfig() { |
Wrapper
1 | protected synchronized void startInternal() throws LifecycleException { |
启动子容器流程如下: