Technical requirements
All the commands and technical instructions in this chapter can be run on Windows 10 and macOS. The code examples in this chapter are available in this book's GitHub repository at https://github.com/PacktPublishing/Building-Microservices-with-Micronaut/tree/master/Chapter10/.
The following tools need to be installed and set up in the development environment:
- Java SDK: Version 13 or above (we used Java 14).
- Maven: This is optional and only required if you would like to use Maven as the build system. However, we recommend having Maven set up on any development machine. Instructions to download and install Maven can be found at https://maven.apache.org/download.cgi.
- Development IDE: Based on your preference, any Java-based IDE can be used, but for the purpose of writing this chapter, IntelliJ was used.
- Git: Instructions for downloading and installing Git can be found at https://git-scm.com/downloads.
- PostgreSQL: Instructions for...