zbhavyai / boilerplate-java

A boilerplate repository for writing Java application using Quarkus

Repository from Github https://github.comzbhavyai/boilerplate-javaRepository from Github https://github.comzbhavyai/boilerplate-java

Boilerplate Java

Use this boilerplate code to author Java applications using Quarkus.

Running dev mode

You can run your application in dev mode that enables live coding using below. Dev UI should be accessible at http://localhost:3005/q/dev-ui/.

./mvnw quarkus:dev

Packaging and running JAR

  1. Build the JAR

    ./mvnw package
  2. Run the JAR

    java -jar ./target/boilerplate-java-1.0.0.jar

Packaging and running native executable

  1. Build native executable

    ./mvnw package -Dnative
  2. Run the executable

    ./target/boilerplate-java-1.0.0

About

A boilerplate repository for writing Java application using Quarkus

License:MIT License


Languages

Language:Java 100.0%