接口 BeanDefinitionParser
- 所有已知实现类:
AbstractBeanDefinitionParser,AbstractSimpleBeanDefinitionParser,AbstractSingleBeanDefinitionParser,AnnotationConfigBeanDefinitionParser,AnnotationDrivenBeanDefinitionParser,ComponentScanBeanDefinitionParser,CorsBeanDefinitionParser,ExecutorBeanDefinitionParser,FreeMarkerConfigurerBeanDefinitionParser,GroovyMarkupConfigurerBeanDefinitionParser,JtaTransactionManagerBeanDefinitionParser,ScheduledTasksBeanDefinitionParser,SchedulerBeanDefinitionParser,ScriptTemplateConfigurerBeanDefinitionParser,TilesConfigurerBeanDefinitionParser,VelocityConfigurerBeanDefinitionParser,ViewResolversBeanDefinitionParser
public interface BeanDefinitionParser
Interface used by theDefaultBeanDefinitionDocumentReaderto handle custom, top-level (directly under<beans/>) tags.Implementations are free to turn the metadata in the custom tag into as many
BeanDefinitionsas required.The parser locates a
BeanDefinitionParserfrom the associatedNamespaceHandlerfor the namespace in which the custom tag resides.- 从以下版本开始:
- 2.0
- 作者:
- Rob Harrop
- 另请参阅:
NamespaceHandler,AbstractBeanDefinitionParser
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 BeanDefinitionparse(Element element, ParserContext parserContext)Parse the specifiedElementand register the resultingBeanDefinition(s)with theBeanDefinitionRegistryembedded in the suppliedParserContext.
方法详细资料
parse
BeanDefinition parse(Element element, ParserContext parserContext)
Parse 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.- 参数:
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- 返回:
- the primary
BeanDefinition