Class AnnotationConfigBeanDefinitionParser
- java.lang.Object
- org.springframework.context.annotation.AnnotationConfigBeanDefinitionParser
- All Implemented Interfaces:
BeanDefinitionParser
public class AnnotationConfigBeanDefinitionParser extends Object implements BeanDefinitionParser
Parser for the <context:annotation-config/> element.- Since:
- 2.5
- Author:
- Mark Fisher, Juergen Hoeller, Christian Dupuis
- See Also:
AnnotationConfigUtils
Constructor Summary
Constructors Constructor Description AnnotationConfigBeanDefinitionParser()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BeanDefinitionparse(Element element, ParserContext parserContext)Parse the specifiedElementand register the resultingBeanDefinition(s)with theBeanDefinitionRegistryembedded in the suppliedParserContext.
Constructor Detail
AnnotationConfigBeanDefinitionParser
public AnnotationConfigBeanDefinitionParser()
Method Detail
parse
public BeanDefinition parse(Element element, ParserContext parserContext)
Description copied from interface:BeanDefinitionParserParse the specifiedElementand register the resultingBeanDefinition(s)with theBeanDefinitionRegistryembedded in the suppliedParserContext.Implementations must return the primary
BeanDefinitionthat results from the parse if they will ever be used in a nested fashion (for example as an inner tag in a<property/>tag). Implementations may returnnullif they will not be used in a nested fashion.- Specified by:
parsein interfaceBeanDefinitionParser- Parameters:
element- the element that is to be parsed into one or moreBeanDefinitionsparserContext- the object encapsulating the current state of the parsing process; provides access to aBeanDefinitionRegistry- Returns:
- the primary
BeanDefinition