@echo off chcp 65001 >nul title Simulation Quick Start cd %SIMULATION_MAIN% if exist "%SIMULATION_MANAGE_BIN%" ( start "Simulation Server" cmd /k "chcp 65001 && title Simulation Server && java -Dspring.profiles.active=test,mysql,redis,rocketmq,springdoc %SIMULATION_VM_PARAMS% -jar %SIMULATION_MANAGE_BIN%" ) if exist "%SIMULATION_MANAGE_BIN%" ( cd web start "Simulation Website" cmd /k "title Simulation Website && simulation-web.exe -c conf/web.conf" ) echo Simulation: echo - SimulationServer (Port: 28280) echo - SimulationWebsite (Port: 18280) pause