2v0-7222 Exam QuestionsBrowse all questions from this exam

2v0-7222 Exam - Question 17


What is a Spring Boot starter dependency? (Choose the best answer.)

Show Answer
Correct Answer: D

A Spring Boot starter dependency is an easy way to include multiple, coordinated dependencies related to a specific technology, like web or JDBC. These starters help simplify the configuration and setup of common use cases in Spring Boot applications.

Discussion

2 comments
Sign in to comment
james2033Option: D
Feb 12, 2024

- A is incorrect. - B is incorrect, not just runtime, starter need in compile time. - C is incorrect, it is not an existing pom.xml for downloading. - D is rationale. Let's see an example https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot-starters/spring-boot-starter-web/build.gradle

IYONISSIOOption: D
Aug 10, 2023

A Spring Boot starter dependency is an easy way to include multiple, coordinated dependencies related to a specific technology, such as web or JDBC