December 2019
Intermediate to advanced
314 pages
6h 51m
English
Within the GitHub source folder for this chapter, you will find two examples. The first one is located in the Chapter04/customer-service/basic folder and will be discussed in this section. We recommend importing the project into your IDE before you move on.
If you take a look at the project's structure, you will see that it is made up of three main components:
package com.packt.quarkus.chapter4; public class Customer { private Integer id; private String name; private String surname; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) ...Read now
Unlock full access