1 Booting Spring Boot
This chapter covers:
- Introduction to Spring Boot, features and components
- Project structure and various elements of a generated project
- Creating an executable jar file and the generated jar structure
- Spring Boot startup events, and ways to listen to events in Spring Boot
- Overview of Spring Boot starter, auto-configuration, failure analyzer, and actuator
- Introduction to Spring Boot developer tools to increase developer productivity
Welcome to Spring Boot! The most popular Java framework out there. It has revolutionized the way Spring applications or, more specifically, Java applications are developed these days. Spring Boot is an open-source extension of the Spring Framework designed to simplify the Spring application development. The popularity of Spring Boot is mostly attributed to its ability to create standalone, production-ready Spring-based applications in no time that you can just run without worrying much about the configuration hazards.
This chapter provides an overview of Spring Boot discussing what is Spring Boot, its purpose, project structure, and several key Spring Boot features. Are you ready? Let's boot our journey!”
1.1 Introducing Spring Boot
In this section, we’ll introduce you to the Spring Boot framework and briefly answer few common questions around Spring Boot.