Table of Contents
Welcome to the Spring Boot tutorial!
This tutorial will cover:
-
the basics of setting up a new Spring Boot project
-
walking through a sample Spring Boot application
-
understanding package structures
-
unit testing with Spring Boot
-
exposing a RESTful API with Spring Boot.
-
JDK 11
-
A modern IDE (IntelliJ IDEA or Eclipse or Netbeans)
-
Apache Maven v3.6.3 or above
.
|____README.adoc <----- This file
|
|____assets
| |____images <----- Images used in the documentation
| |____docs <----- Tutorial documentation
|
|____todo
| |____pom.xml <----- Apache Maven POM to build the app
| |____src
| | |____main
| | | |____java <----- Main code
| | | |____resources <----- Main resources
| | |____test
| | | |____java <----- Test code
| | | |____resources <----- Test resources
The project can be loaded into an IDE as a single structure. Setup the project as:
-
Set up your IDE to use JDK 11 or above
-
Import or open the project from the pom.xml under the Spring Boot todo directory.