Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 2.09 KB

README.adoc

File metadata and controls

54 lines (42 loc) · 2.09 KB

Quarkus First Steps

Introduction

This hands-on tutorial shows how to quickly become productive with Quarkus with features that you’ll use on a day to day basis like logging, configuration, testing. This tutorial will also cover technologies used by most web applications like REST, persistence, and security.

This tutorial does assume some degree of experience with either Java EE or Spring, but the step-by-step nature of this tutorial does not require it.

The domain model for this tutorial is simply a Training service that communicates with a Greeting service. The goal is to keep the domain model simple to focus on APIs and concepts.

The documented steps in this lab follow a pattern:

  1. Write code

  2. Test the code (curl or mvn test)

  3. Verify output

This pattern flows quickly due to Quarkus' Live Coding feature and makes checking code changes near-instantaneous, so each change is immediately evaluated.

Requirements

Additional Information