- @echo off
- echo Running Chronic Disease App from JAR...
- REM Check if the JAR file exists
- if not exist "target\ChronicDiseaseApp-1.0-SNAPSHOT.jar" (
- echo Error: JAR file not found. Please build the project first using 'mvn package'.
- pause
- exit /b 1
- )
- echo Starting application...
- java -jar target\ChronicDiseaseApp-1.0-SNAPSHOT.jar
|