@SpringBootApplication: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
Line 7: Line 7:


@SpringBootApplication is a composite application that combines [[@SpringBootConfiguration]], [[@EnableAutoConfiguration]] and [[@ComponentScan]].
@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:

Spring Boot Component Scanning