This chapter talks about the Spring Boot features that involve configuration. First it shows you how Spring Boot works when it’s using the auto-configuration feature (in detail) when you add the @EnableAutoConfiguration annotation. Then the chapter shows you some of Spring Boot’s extra features, such as externalizing your configuration properties, its enable and disable features, and more.
Auto-Configuration
The previous chapter explained that auto-configuration is one of the important features in Spring Boot because it will try to do its best to configure your ...