Hongqing Liu | fd5ee81 | 2014-05-10 16:32:51 +0800 | [diff] [blame] | 1 | @echo off
|
| 2 | rem Licensed to the Apache Software Foundation (ASF) under one or more
|
| 3 | rem contributor license agreements. See the NOTICE file distributed with
|
| 4 | rem this work for additional information regarding copyright ownership.
|
| 5 | rem The ASF licenses this file to You under the Apache License, Version 2.0
|
| 6 | rem (the "License"); you may not use this file except in compliance with
|
| 7 | rem the License. You may obtain a copy of the License at
|
| 8 | rem
|
| 9 | rem http://www.apache.org/licenses/LICENSE-2.0
|
| 10 | rem
|
| 11 | rem Unless required by applicable law or agreed to in writing, software
|
| 12 | rem distributed under the License is distributed on an "AS IS" BASIS,
|
| 13 | rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 | rem See the License for the specific language governing permissions and
|
| 15 | rem limitations under the License.
|
| 16 |
|
| 17 | if "%OS%" == "Windows_NT" setlocal
|
| 18 | rem ---------------------------------------------------------------------------
|
| 19 | rem Wrapper script for command line tools
|
| 20 | rem
|
| 21 | rem Environment Variable Prerequisites
|
| 22 | rem
|
| 23 | rem CATALINA_HOME May point at your Catalina "build" directory.
|
| 24 | rem
|
| 25 | rem TOOL_OPTS (Optional) Java runtime options used when the "start",
|
| 26 | rem "stop", or "run" command is executed.
|
| 27 | rem
|
| 28 | rem JAVA_HOME Must point at your Java Development Kit installation.
|
| 29 | rem
|
| 30 | rem JAVA_OPTS (Optional) Java runtime options used when the "start",
|
| 31 | rem "stop", or "run" command is executed.
|
| 32 | rem ---------------------------------------------------------------------------
|
| 33 |
|
| 34 | rem Guess CATALINA_HOME if not defined
|
| 35 | if not "%CATALINA_HOME%" == "" goto gotHome
|
| 36 | set CATALINA_HOME=.
|
| 37 | if exist "%CATALINA_HOME%\bin\tool-wrapper.bat" goto okHome
|
| 38 | set CATALINA_HOME=..
|
| 39 | :gotHome
|
| 40 | if exist "%CATALINA_HOME%\bin\tool-wrapper.bat" goto okHome
|
| 41 | echo The CATALINA_HOME environment variable is not defined correctly
|
| 42 | echo This environment variable is needed to run this program
|
| 43 | goto end
|
| 44 | :okHome
|
| 45 |
|
| 46 | rem Ensure that any user defined CLASSPATH variables are not used on startup,
|
| 47 | rem but allow them to be specified in setenv.bat, in rare case when it is needed.
|
| 48 | set CLASSPATH=
|
| 49 |
|
| 50 | rem Get standard environment variables
|
| 51 | if exist "%CATALINA_HOME%\bin\setenv.bat" call "%CATALINA_HOME%\bin\setenv.bat"
|
| 52 |
|
| 53 | rem Get standard Java environment variables
|
| 54 | if exist "%CATALINA_HOME%\bin\setclasspath.bat" goto okSetclasspath
|
| 55 | echo Cannot find "%CATALINA_HOME%\bin\setclasspath.bat"
|
| 56 | echo This file is needed to run this program
|
| 57 | goto end
|
| 58 | :okSetclasspath
|
| 59 | set "BASEDIR=%CATALINA_HOME%"
|
| 60 | call "%CATALINA_HOME%\bin\setclasspath.bat"
|
| 61 |
|
| 62 | rem Add on extra jar files to CLASSPATH
|
| 63 | rem Note that there are no quotes as we do not want to introduce random
|
| 64 | rem quotes into the CLASSPATH
|
| 65 | if "%CLASSPATH%" == "" goto noclasspath
|
| 66 | set "CLASSPATH=%CLASSPATH%;%CATALINA_HOME%\bin\bootstrap.jar;%BASEDIR%\lib\servlet-api.jar"
|
| 67 | goto okclasspath
|
| 68 | :noclasspath
|
| 69 | set "CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar;%BASEDIR%\lib\servlet-api.jar"
|
| 70 | :okclasspath
|
| 71 |
|
| 72 | rem Get remaining unshifted command line arguments and save them in the
|
| 73 | set CMD_LINE_ARGS=
|
| 74 | :setArgs
|
| 75 | if ""%1""=="""" goto doneSetArgs
|
| 76 | set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
|
| 77 | shift
|
| 78 | goto setArgs
|
| 79 | :doneSetArgs
|
| 80 |
|
| 81 | %_RUNJAVA% %JAVA_OPTS% %TOOL_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.home="%CATALINA_HOME%" org.apache.catalina.startup.Tool %CMD_LINE_ARGS%
|
| 82 |
|
| 83 | :end
|