Tomcat启动关闭相关命令

5 篇文章 0 订阅
Tomcat启动和关闭的核心包是 %Tomcat Directory%/bin/Bootstrap.jar
启动:创建start-up.bat文件,内容如下:
java -jar Bootstrap.jar start

关闭:创建shup-down.bat文件,内容如下:
java -jar Bootstrap.jar stop

其中Bootstrap.jar中的org.apache.catalina.startup.Bootstrap类的main方法如下:
public static void main(String[] args)
    {
         try
        {
             new ObjectName( "test:foo=bar");
        } catch (Throwable t) {
            System.out.println( "This release of Apache Tomcat was packaged to run on J2SE 5.0 \nor later. It can be run on earlier JVMs by downloading and \ninstalling a compatibility package from the Apache Tomcat \nbinary download page.");
             try
            {
                Thread.sleep(5000L);
            } catch (Exception ex) {
            }
             return;
        }

         if (daemon == null) {
            daemon = new Bootstrap();
             try {
                daemon.init();
            } catch (Throwable t) {
                t.printStackTrace();
                 return;
            }
        }
         try
        {
            String command = "start"; //默认参数为启动
             if (args.length > 0) {
                command = args[(args.length - 1)];
            }

             if (command.equals( "startd")) {
                args[0] = "start"; //启动的方法
                daemon.load(args);
                daemon.start();
            } else if (command.equals( "stopd")) {
                args[0] = "stop"; //关闭的方法
                daemon.stop();
            } else if (command.equals( "start")) {
                daemon.setAwait( true); //启动的方法
                daemon.load(args);
                daemon.start();
            } else if (command.equals( "stop")) {
                daemon.stopServer(args); //关闭的方法
            } else {
                log.warn( "Bootstrap: command \"" + command + "\" does not exist."); //错误命令加入日志
            }
        } catch (Throwable command) {
            t.printStackTrace();
        }
    }

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值