@Configuration: Difference between revisions
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
* [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Java-based_Configuration|Spring Dependency Injection and Inversion of Control Container Concepts]] | * [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Java-based_Configuration|Spring Dependency Injection and Inversion of Control Container Concepts]] | ||
* [[@SpringBootConfiguration#Overview|@SpringBootConfiguration]] | |||
=Overview= | =Overview= | ||
The @Configuration annotation indicates that the class it annotates is a configuration class that will provide [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Beans|beans]] to the Spring [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Application_Context|application context]]. | The @Configuration annotation indicates that the class it annotates is a configuration class that will provide [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Beans|beans]] to the Spring [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Application_Context|application context]]. |
Revision as of 06:05, 10 October 2018
Internal
Overview
The @Configuration annotation indicates that the class it annotates is a configuration class that will provide beans to the Spring application context.