Getting Started: Spring Initializr
You will be introduced to Spring Initializr in this lesson.
We'll cover the following...
In this lesson, you will learn what Spring Initializr is and its purpose. We will also discuss the application we are going to build and create the basic template of our project.
What is Spring Initializr
Spring Initializr is a web application for creating a starter template project.
Spring Initializr allows us to choose the following:
-
Build tool – This tool is for fetching dependencies, building, and running the application. Spring Initializr allows us to choose from the following:
- Maven
- Gradle
-
Programming language – As Spring Boot is for Java or JVM based programming languages, we can choose from the following languages:
- Java
- Kotlin
- Groovy
-
Spring Boot version – We see the
RELEASE
andSNAPSHOT
versions. Preferably, we choose the latestRELEASE
version which is selected by default.The
SNAPSHOT
...