Last active
May 16, 2021 16:39
-
-
Save hughpearse/4359b6a9b0ff68ff58e2863f3525a448 to your computer and use it in GitHub Desktop.
Quarkus hello world
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Create your starter hello world app on the website and download the zip archive | |
https://code.quarkus.io/ | |
Check your java version and compile your project: | |
foo@bar:~$ java -version 2>&1 | grep HotSpot | |
foo@bar:~$ ./gradlew quarkusDev | |
Open the dev console: | |
http://localhost:8080/q/dev/ | |
Look at the source code: | |
foo@bar:~$ vim ./src/main/java/org/acme/GreetingResource.java | |
Note that the hello world endpoint is located at `/hello-resteasy` and can be accessed at: | |
http://localhost:8080/hello-resteasy | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment