刘洪青 | 6582752 | 2016-10-19 16:10:39 +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 | rem ---------------------------------------------------------------------------
|
| 18 | rem Wrapper script for command line tools
|
| 19 | rem
|
| 20 | rem Environment Variable Prerequisites
|
| 21 | rem
|
| 22 | rem CATALINA_HOME May point at your Catalina "build" directory.
|
| 23 | rem
|
| 24 | rem TOOL_OPTS (Optional) Java runtime options.
|
| 25 | rem
|
| 26 | rem JAVA_HOME Must point at your Java Development Kit installation.
|
| 27 | rem Using JRE_HOME instead works as well.
|
| 28 | rem
|
| 29 | rem JRE_HOME Must point at your Java Runtime installation.
|
| 30 | rem Defaults to JAVA_HOME if empty. If JRE_HOME and JAVA_HOME
|
| 31 | rem are both set, JRE_HOME is used.
|
| 32 | rem
|
| 33 | rem JAVA_OPTS (Optional) Java runtime options.
|
| 34 | rem
|
| 35 | rem JAVA_ENDORSED_DIRS (Optional) Lists of of semi-colon separated directories
|
| 36 | rem containing some jars in order to allow replacement of APIs
|
| 37 | rem created outside of the JCP (i.e. DOM and SAX from W3C).
|
| 38 | rem It can also be used to update the XML parser implementation.
|
| 39 | rem Defaults to $CATALINA_HOME/endorsed.
|
| 40 | rem ---------------------------------------------------------------------------
|
| 41 |
|
| 42 | setlocal
|
| 43 |
|
| 44 | rem Guess CATALINA_HOME if not defined
|
| 45 | set "CURRENT_DIR=%cd%"
|
| 46 | if not "%CATALINA_HOME%" == "" goto gotHome
|
| 47 | set "CATALINA_HOME=%CURRENT_DIR%"
|
| 48 | if exist "%CATALINA_HOME%\bin\tool-wrapper.bat" goto okHome
|
| 49 | cd ..
|
| 50 | set "CATALINA_HOME=%cd%"
|
| 51 | cd "%CURRENT_DIR%"
|
| 52 | :gotHome
|
| 53 | if exist "%CATALINA_HOME%\bin\tool-wrapper.bat" goto okHome
|
| 54 | echo The CATALINA_HOME environment variable is not defined correctly
|
| 55 | echo This environment variable is needed to run this program
|
| 56 | goto end
|
| 57 | :okHome
|
| 58 |
|
| 59 | rem Ensure that any user defined CLASSPATH variables are not used on startup,
|
| 60 | rem but allow them to be specified in setenv.bat, in rare case when it is needed.
|
| 61 | set CLASSPATH=
|
| 62 |
|
| 63 | rem Get standard environment variables
|
| 64 | if exist "%CATALINA_HOME%\bin\setenv.bat" call "%CATALINA_HOME%\bin\setenv.bat"
|
| 65 |
|
| 66 | rem Get standard Java environment variables
|
| 67 | if exist "%CATALINA_HOME%\bin\setclasspath.bat" goto okSetclasspath
|
| 68 | echo Cannot find "%CATALINA_HOME%\bin\setclasspath.bat"
|
| 69 | echo This file is needed to run this program
|
| 70 | goto end
|
| 71 | :okSetclasspath
|
| 72 | call "%CATALINA_HOME%\bin\setclasspath.bat" %1
|
| 73 | if errorlevel 1 goto end
|
| 74 |
|
| 75 | rem Add on extra jar files to CLASSPATH
|
| 76 | rem Note that there are no quotes as we do not want to introduce random
|
| 77 | rem quotes into the CLASSPATH
|
| 78 | if "%CLASSPATH%" == "" goto emptyClasspath
|
| 79 | set "CLASSPATH=%CLASSPATH%;"
|
| 80 | :emptyClasspath
|
| 81 | set "CLASSPATH=%CLASSPATH%%CATALINA_HOME%\bin\bootstrap.jar;%CATALINA_HOME%\bin\tomcat-juli.jar;%CATALINA_HOME%\lib\servlet-api.jar"
|
| 82 |
|
| 83 | set JAVA_OPTS=%JAVA_OPTS% -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
|
| 84 |
|
| 85 | rem Get remaining unshifted command line arguments and save them in the
|
| 86 | set CMD_LINE_ARGS=
|
| 87 | :setArgs
|
| 88 | if ""%1""=="""" goto doneSetArgs
|
| 89 | set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
|
| 90 | shift
|
| 91 | goto setArgs
|
| 92 | :doneSetArgs
|
| 93 |
|
| 94 | %_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%
|
| 95 |
|
| 96 | :end
|