Annotation Interface Configurable
Marks a class as being eligible for Spring-driven configuration.
 
Typically used with the AspectJ AnnotationBeanConfigurerAspect.
- Since:
- 2.0
- Author:
- Rod Johnson, Rob Harrop, Adrian Colyer, Ramnivas Laddad
- 
Optional Element SummaryOptional ElementsModifier and TypeOptional ElementDescriptionAre dependencies to be injected via autowiring?booleanIs dependency checking to be performed for configured objects?booleanAre dependencies to be injected prior to the construction of an object?The name of the bean definition that serves as the configuration template.
- 
Element Details- 
valueString valueThe name of the bean definition that serves as the configuration template.- Default:
- ""
 
- 
autowireAutowire autowireAre dependencies to be injected via autowiring?- Default:
- NO
 
- 
dependencyCheckboolean dependencyCheckIs dependency checking to be performed for configured objects?- Default:
- false
 
- 
preConstructionboolean preConstructionAre dependencies to be injected prior to the construction of an object?- Default:
- false
 
 
-