SpringBoot starters

Most common spring boot starter dependency

  • Spring Boot starters can help to reduce the number of manually added dependencies just by adding one dependency
  • spring-boot-starter-web
    • RESTful web application
    • Spring MVC
    • Tomcat as default container
  • spring-boot-starter-security
    • Spring security
  • spring-boot-starter-actuator
  • spring-boot-starter-data-jdbc
  • spring-boot-start-log4j2
  • spring-boot-starter-test
  • spring-boot-starter-web-services
    • For SOAP Web Services
  • spring-boot-starter-thymeleaf
    • MVC webapplication with thymleaf

Leave a Comment