msb protocol synch change
[msb/apigateway.git] / msb-core / apiroute / apiroute-standalone / src / assembly / resource / apiroute / stop.bat
1 @REM
2 @REM Copyright 2016 ZTE Corporation.
3 @REM
4 @REM Licensed under the Apache License, Version 2.0 (the "License");
5 @REM you may not use this file except in compliance with the License.
6 @REM You may obtain a copy of the License at
7 @REM
8 @REM     http://www.apache.org/licenses/LICENSE-2.0
9 @REM
10 @REM Unless required by applicable law or agreed to in writing, software
11 @REM distributed under the License is distributed on an "AS IS" BASIS,
12 @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 @REM See the License for the specific language governing permissions and
14 @REM limitations under the License.
15 @REM
16 @REM     Author: Zhaoxing Meng
17 @REM     email: meng.zhaoxing1@zte.com.cn
18 @REM
19
20 @echo off
21 title stopping apiroute-service
22
23 set HOME=%~dp0
24 set APIROUTE_Main_Class="org.openo.msb.ApiRouteApp"
25
26 echo ================== apiroute info  =============================================
27 echo HOME=$HOME
28 echo APIROUTE_Main_Class=%APIROUTE_Main_Class%
29 echo ===============================================================================
30
31 echo ### Stopping apiroute-service
32 cd /d %HOME%
33
34 rem set JAVA_HOME=D:\WorkSoftware\jdk1.7.0_60
35 for /f "delims=" %%i in ('%JAVA_HOME%\bin\jcmd') do (
36   call find_kill_process "%%i" %APIROUTE_Main_Class% %HOME%
37 )
38 exit