Files
AIGC/demo/start-app.bat

14 lines
285 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
echo Starting Spring Boot application...
echo.
REM 设置JAVA_HOME如果需要
REM set JAVA_HOME=C:\Program Files\Java\jdk-21
REM 启动应用并显示输出
java -jar target/demo-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev
echo.
echo Application stopped.
pause