Technical requirements
For this chapter, we are going to need the following:
- Java 17 Development Kit (JDK 17):
- Download JDK 17: Visit the official Oracle website or adopt an open-source version such as AdoptOpenJDK to download Java 17
- Install JDK 17: Run the downloaded installer and follow the steps to install Java 17 on your system
- Configure environment variables: Ensure your
JAVA_HOME
environment variable is set to the JDK 17 directory and that your PATH includes the bin directory of JDK 17
- A modern integrated development environment (IDE): I recommend IntelliJ IDEA:
- Download IntelliJ IDEA: Visit the JetBrains website and choose the edition you prefer (Community or Ultimate).
- Run the installer: Once downloaded, run the installer and follow the instructions. Choose the settings and plugins that suit your needs.
- Launch IntelliJ IDEA: After installation, open IntelliJ IDEA to configure it further as needed and familiarize yourself with the interface.
- GitHub repository:
- The...