이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 4. Compiling and starting your Spring Web example
Compile and start your example application 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:
cd <project_name>
cd <project_name>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Run the application in development mode using the Quarkus Maven Plugin:
./mvnw compile quarkus:dev
./mvnw compile quarkus:devCopy to Clipboard Copied! Toggle word wrap Toggle overflow Navigate to
http://localhost:8080/greetingYour browser displays the following message:Hello Spring
Hello SpringCopy to Clipboard Copied! Toggle word wrap Toggle overflow