Chapter 4. Compiling and starting your Spring Web example
Compile and start your example application by using the Quarkus Maven Plugin. You can also compile and run your application as a native executable.
Procedure
Navigate to the root directory of your project. Enter the following command:
cd <project_name>
cd <project_name>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Run the application in development mode by using the Quarkus Maven Plugin. Enter the following command:
./mvnw quarkus:dev
./mvnw quarkus:devCopy to Clipboard Copied! Toggle word wrap Toggle overflow Navigate to the
http://localhost:8080/greetingdirectory. Your browser displays the following message:Hello Spring
Hello SpringCopy to Clipboard Copied! Toggle word wrap Toggle overflow