引言 Tomcat启动入口就在脚本startup.sh中,具体脚本可以看tomcat的源码,这个启动脚本主要用来判断环境, 找到catalina.sh脚本路径,将启动参数传递给catalina.sh执行。 catalina.sh start 最终会执行org.apache.catalina.startup.Bootstrap中的main方法,并把start参数传入。 以后分析Tomcat关闭的时候,也是一个套路,最终都会调用到org.apache.catalina.startup.Bootstrap的main方法,并把stop参数传入。
分析main方法:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 public static void main (String args[]) { synchronized (daemonLock) { if (daemon == null ) { Bootstrap bootstrap = new Bootstrap (); try { bootstrap.init(); } catch (Throwable t) { handleThrowable(t); t.printStackTrace(); return ; } daemon = bootstrap; } else { Thread.currentThread().setContextClassLoader(daemon.catalinaLoader); } } try { String command = "start" ; if (args.length > 0 ) { command = args[args.length - 1 ]; } if (command.equals("startd" )) { args[args.length - 1 ] = "start" ; daemon.load(args); daemon.start(); } else if (command.equals("stopd" )) { args[args.length - 1 ] = "stop" ; daemon.stop(); } else if (command.equals("start" )) { daemon.setAwait(true ); daemon.load(args); daemon.start(); if (null == daemon.getServer()) { System.exit(1 ); } } else if (command.equals("stop" )) { daemon.stopServer(args); } else if (command.equals("configtest" )) { daemon.load(args); if (null == daemon.getServer()) { System.exit(1 ); } System.exit(0 ); } else { log.warn("Bootstrap: command \"" + command + "\" does not exist." ); } } catch (Throwable t) { if (t instanceof InvocationTargetException && t.getCause() != null ) { t = t.getCause(); } handleThrowable(t); t.printStackTrace(); System.exit(1 ); } }
启动过程有两步操作: 1、初始化守护进程,获取类加载器和反射实例化org.apache.catalina.startup.Catalina。 2、根据启动参数start,通过反射,依次执行Catalina实例的setAwait、load、start方法。
下面主要分析Catalina实例的setAwait、load、start方法:
1 setAwait 入参为true
1 2 3 4 5 6 7 8 protected boolean await = false ; public void setAwait (boolean b) { await = b; }
2 load 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 public void load () { if (loaded) { return ; } loaded = true ; long t1 = System.nanoTime(); initDirs(); initNaming(); Digester digester = createStartDigester(); InputSource inputSource = null ; InputStream inputStream = null ; File file = null ; try { ... try { inputSource.setByteStream(inputStream); digester.push(this ); digester.parse(inputSource); } catch (SAXParseException spe) { log.warn("Catalina.start using " + getConfigFile() + ": " + spe.getMessage()); return ; } catch (Exception e) { log.warn("Catalina.start using " + getConfigFile() + ": " , e); return ; } } finally { if (inputStream != null ) { try { inputStream.close(); } catch (IOException e) { } } } getServer().setCatalina(this ); getServer().setCatalinaHome(Bootstrap.getCatalinaHomeFile()); getServer().setCatalinaBase(Bootstrap.getCatalinaBaseFile()); initStreams(); try { getServer().init(); } catch (LifecycleException e) { if (Boolean.getBoolean("org.apache.catalina.startup.EXIT_ON_INIT_FAILURE" )) { throw new java .lang.Error(e); } else { log.error("Catalina.start" , e); } } long t2 = System.nanoTime(); if (log.isInfoEnabled()) { log.info("Initialization processed in " + ((t2 - t1) / 1000000 ) + " ms" ); } }
主要流程:
初始化JMX环境变量
创建和配置Digester
读取配置文件conf/server.xml配置文件,失败就加载server-embed.xml
通过Digester解析配置文件,并将当前Catalina作为最顶层容器,解析过程会实例化各种组件
设置Server组件的catalina信息
调用Server组件的生命周期init方法
解析配置文件,注入catalina的各种组件后面分析。 下面看start方法:
3 start 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 public void start () { if (getServer() == null ) { load(); } if (getServer() == null ) { log.fatal("Cannot start server. Server instance is not configured." ); return ; } long t1 = System.nanoTime(); try { getServer().start(); } catch (LifecycleException e) { log.fatal(sm.getString("catalina.serverStartFail" ), e); try { getServer().destroy(); } catch (LifecycleException e1) { log.debug("destroy() failed for failed Server " , e1); } return ; } long t2 = System.nanoTime(); if (log.isInfoEnabled()) { log.info("Server startup in " + ((t2 - t1) / 1000000 ) + " ms" ); } if (useShutdownHook) { if (shutdownHook == null ) { shutdownHook = new CatalinaShutdownHook (); } Runtime.getRuntime().addShutdownHook(shutdownHook); LogManager logManager = LogManager.getLogManager(); if (logManager instanceof ClassLoaderLogManager) { ((ClassLoaderLogManager) logManager).setUseShutdownHook( false ); } } if (await) { await(); stop(); } }
流程:
调用Server组件的start方法,开启一个新的服务。
注册关闭钩子
让Tomcat在shutdown端口阻塞监听关闭命令
本篇目的就是了解整个Tomcat启动的主干流程,体现在代码层的就是依次执行Catalina实例的setAwait、load、start方法。 其中的load方法中的解析配置文件与注册组件、执行生命周期方法init; start方法中的开启服务、注册关闭钩子、阻塞监听关闭指令等详细细节,将在后期慢慢分析。