Chapter 1
- Quarkus is a Java web application framework similar to Spring Boot. Its main focus is on minimizing the application startup time and memory footprint while boosting the developer experience.
- You can create a Quarkus project from scratch by leveraging its CLI tool, a Maven goal, or most conveniently, by using the https://code.quarkus.io page.
- To run a Quarkus project in development mode, you need to invoke the following command:
./
mvnw quarkus:dev
. - TDD stands for test-driven development, which is a software development process that aims to improve the developer’s productivity and the overall code quality.
- There are several packaging modes for Quarkus. You can easily package the application by running the following command:
./mvnw
clean package
.