Dependency Management
Let’s learn about the set of basic dependencies required to start a Spring Boot project.
We'll cover the following...
We'll cover the following...
Gradle build
Let’s look at the build.gradle file.
It contains dependencies such as spring-boot-starter-web, spring-boot-starter-data-jpa, and H2
that we’ve added to our Spring Boot application along with Java and Spring Boot plugins.
Spring project dependencies
The most convenient way to build a Spring Boot project is ...