1
JavaIntermediate#spring
Starters are curated dependency descriptors (e.g., spring-boot-starter-web, spring-boot-starter-data-jpa) that bundle compatible libraries together, simplifying Maven/Gradle dependency management and reducing version conflicts.
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- pulls in Tomcat, Jackson, Spring MVC, etc. -->