Having presented Thorntail's features and its relationship with Java EE/Jakarta EE and MicroProfile.io, it's time to start to build our microservices application.
We will build a simple fantasy football application that is divided into four Maven projects, as follows:
- A microservice application that handles the football players domain; it will expose create, read, update, and delete (CRUD) API, and it will store and retrieve information using a PostgreSQL database.
- A microservice application that handles the fantasy football player domain and the presidents of the fantasy teams; it will expose a CRUD API, and it will store and retrieve information using a MySQL database.
- A microservice application that handles the fantasy team's domain; it will expose a CRUD API, and it will store and retrieve information using a MongoDB...