15 lines
324 B
Batchfile
15 lines
324 B
Batchfile
|
@echo off
|
||
|
chcp 65001
|
||
|
echo 正在编译项目...
|
||
|
call mvn clean package
|
||
|
|
||
|
echo.
|
||
|
echo 正在停止旧程序(如果运行中)...
|
||
|
call stop.bat
|
||
|
|
||
|
echo.
|
||
|
echo 正在启动程序...
|
||
|
java -Dfile.encoding=UTF-8 -jar target/image-ocr-monitor-1.0-SNAPSHOT-jar-with-dependencies.jar
|
||
|
|
||
|
echo.
|
||
|
echo 如果要停止程序,请运行 stop.bat
|