InterviewSolution
Saved Bookmarks
| 1. |
What Is Spring Boot Starter And How It Is Useful? |
|
Answer» SPRING boot comes with a lot of starters which is set of convenient dependency DESCRIPTORS which you can include in your pom.xml. For example: Let’s SAY you WANT to work Spring MVC application, you can simply include “spring–boot–starter–web” as dependency in pom.xml . Spring boot comes with a lot of starters which is set of convenient dependency descriptors which you can include in your pom.xml. For example: Let’s say you want to work Spring MVC application, you can simply include “spring–boot–starter–web” as dependency in pom.xml . |
|