Spring Boot

Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run".

from Zero to Hero Complete practical approach

1. Introduction to Spring Boot


  1. Why Spring Boot?
    1. Problems without Spring Boot
    2. Solutions with Spring Boot
  2. What is Spring Boot?
    1. Spring Boot in nutshell
    2. Features of SpringBoot

2. How to get started with Spring Boot


  1. Creating Hello World SpringBoot application
  2. Understanding SpringBoot application architecture
    1. Take a look at POM file
    2. Take a look at SpringBoot Starterst
    3. Take a look at Application.java
    4. Take a look at application.properties
  3. Running SpringBoot application
    1. Thru command line interface
    2. Thru maven
    3. As Java Application
  4. Debugging SpringBoot application
    1. Developer Tools

3. Spring Initializr


  1. What is Spring Initializr?
  2. How to use Spring Initializr?

4. Spring Boot Starters


  1. Spring Boot Starter Parent
  2. Maven Default
  3. Other Starters

5. Spring Boot Configuration


  1. Property file configuration
  2. YAML file configuration
  3. Overriding the default configuration values
  4. Multiple configuration files

6. Spring Boot Profiles


  1. Why SpringBoot profiles are needed?
  2. What are SpringBoot profiles?
  3. What is the default profile?
  4. Some important profiles
    1. Production profile
    2. Development profile
    3. Test profile

7. Spring Boot Actuator


  1. Check health of SpringBoot application
  2. Metrics from Application
  3. Retrieve SpringBoot application configuration
  4. Stop SpringBoot application using actuator

8. Spring Boot REST application


  1. SpringBoot REST application
  2. SpringBoot REST CRUD with Hibernate
  3. SpringBoot REST CRUD with JPA
  4. SpringBoot REST CRUD with SpringData JPA
  5. SpringBoot REST CRUD with SpringData REST

9. Spring Boot Test


  1. The importance of testing
  2. How SpringBoot test makes developer’s life stress free
  3. SpringBoot Test feature
  4. How to write variety of test for SpringBoot application
    1. Unit tests
    2. Service tests
    3. REST end-point tests

10. SpringBoot thymeleaf application (like Spring MVC, no JSP)


  1. What are templates and why are they popular?
  2. Introduction to thymeleaf
  3. Thymeleaf Hello World
  4. Thymeleaf with custom CSS
  5. Build Table in thymeleaf
  6. Thymeleaf with Bootstrap CSS
  7. Thymeleaf CRUD
    1. Create record
    2. Read/Retrieve record
    3. Update record
    4. Delete Record

11. Miscellaneous


  1. Logging in SpringBoot application
  2. SpringBoot FAQs
  3. SpringBoot references