Which Spring Boot Starter is recommended for developing web applications?

  • spring-boot-starter-actuator
  • spring-boot-starter-data-jpa
  • spring-boot-starter-logging
  • spring-boot-starter-web
To develop web applications in Spring Boot, the recommended starter is "spring-boot-starter-web." This starter includes everything needed to set up a basic web application, including embedded Tomcat and Spring MVC. The other starters mentioned serve different purposes like data access, monitoring, and logging but are not specific to web development.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *