4.8. Run the application in dev and JVM modes
To run the application in dev mode, use:
Using the Quarkus CLI:
quarkus devUsing Maven:
./mvnw quarkus:devUsing Gradle:
./gradlew --console=plain quarkusDev
After exploring the application in dev mode, you can run it as a standard Java application.
First, compile it:
Using the Quarkus CLI:
quarkus buildUsing Maven:
./mvnw installUsing Gradle:
./gradlew build
Then, run it:
java -jar target/quarkus-app/quarkus-run.jar