Spring Boot MongoDB tutorial shows how to access data in MongoDB in Spring Boot framework.
Spring Boot MongoDB Reactive tutorial shows how to do reactive programming with MongoDB in a Spring Boot application.
Spring Boot Mustache tutorial shows how to create a simple Spring Boot web application with Mustache template engine.
Spring Boot @ModelAttribute tutorial shows how to use the @ModelAttribute annotation in a Spring application.
Spring Boot Login Page tutorial shows how to work with a default login page. Spring security secures all http endpoints by default with basic authentication.
Spring Boot Model tutorial shows how to use Model in a Spring Boot application. The purpose of the model is to hold data. Model defines a holder for model attributes and is primarily designed for adding attributes to the model.
Spring Boot loading resources tutorial shows how to load resources in a Spring Boot application. The application loads a text file and counts the words occurrences.
Spring Boot @Lazy tutorial shows how to lazily intialize beans with @Lazy annotation. A @Lazy bean is not initialized until referenced by another bean or explicitly retrieved from BeanFactory.
Spring Boot listing beans shows how to list all beans stored in the Spring container, including built-in and custom beans.
SpringBoot JpaRepository tutorial shows how to use JpaRepository to manage data in a Spring Boot application.