@SpringBootApplication: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Spring Boot Concepts") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[Spring_Boot_Concepts#Autoconfiguration|Spring Boot Concepts]] | * [[Spring_Boot_Concepts#Autoconfiguration|Spring Boot Concepts - Autoconfiguration]] | ||
* [[Spring_Boot_Concepts#Spring_Boot_Main_Class|Spring Boot Concepts - Main Class]] | |||
=Overview= | |||
@SpringBootApplication is a composite application that combines [[@SpringBootConfiguration]], [[@EnableAutoConfiguration]] and [[@ComponentScan]]. | |||
For more details on component scan in Spring Boot applications see: {{Internal|Spring_Boot_Concepts#Component_Scanning|Spring Boot Component Scanning}} |
Latest revision as of 17:40, 8 November 2018
Internal
Overview
@SpringBootApplication is a composite application that combines @SpringBootConfiguration, @EnableAutoConfiguration and @ComponentScan.
For more details on component scan in Spring Boot applications see: