September 20th, 2022

SpringBoot Basics

Spring Boot is an opinionated, easy to get-started addition to the Spring platform – highly useful for creating stand-alone, production-grade applications with minimum effort.

In this series, we’ll first cover the basics of Spring Boot. The reader will learn how to get started, how Spring Boot differs from Spring, how to customize and test the application.

Then we’ll cover some selected advanced topics like persistence, DevOps tools, and a few other useful topics which can be useful to get started with Spring Boot.

SpringBoot Benefits

  • Spring initializer
  • Springboot starter projects – Make it easy to build variety of applications
  • Autoconfiguration – Eliminate configuration to setup Spring and other frameworks
  • Springboot Devtools
  • Enable non functional requirements(NFRs) – Actuator, Embedded Server, Logging, Profiles
  • Manage application using different profiles(QA, Dev, Stage, Prod, etc)
    • trace
    • debug
    • info
    • warning
    • error
    • off

Related Tutorials