Accessing the source code
The source code for this book can be found in this book’s GitHub repository:
To be able to run the commands described in this book, download the source code to a folder and set up an environment variable, $BOOK_HOME
, that points to that folder. Here are some sample commands you can use:
export BOOK_HOME=~/Documents/Microservices-with-Spring-Boot-and-Spring-Cloud-Fourth-Edition
git clone https://github.com/PacktPublishing/Microservices-with-Spring-Boot-and-Spring-Cloud-Fourth-Edition.git $BOOK_HOME
The Java source code is written for Java SE 8 and uses a Java SE 24 JRE when executed in Docker containers. The following versions of Spring are used:
- Spring Framework: 6.2.6
- Spring Boot: 3.5.0
- Spring Cloud: 2025.0.0
The code examples in each chapter all come from the source code in $BOOK_HOME/ChapterNN
, where...