class SpringConfiguredBeanDefinitionParser extends java.lang.Object implements BeanDefinitionParser
BeanDefinitionParser responsible for parsing the
<context:spring-configured/> tag.| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
BEAN_CONFIGURER_ASPECT_BEAN_NAME
The bean name of the internally managed bean configurer aspect.
|
(package private) static java.lang.String |
BEAN_CONFIGURER_ASPECT_CLASS_NAME |
| Constructor and Description |
|---|
SpringConfiguredBeanDefinitionParser() |
| Modifier and Type | Method and Description |
|---|---|
BeanDefinition |
parse(org.w3c.dom.Element element,
ParserContext parserContext)
Parse the specified
Element and register the resulting
BeanDefinition(s) with the
BeanDefinitionRegistry
embedded in the supplied ParserContext. |
public static final java.lang.String BEAN_CONFIGURER_ASPECT_BEAN_NAME
static final java.lang.String BEAN_CONFIGURER_ASPECT_CLASS_NAME
public BeanDefinition parse(org.w3c.dom.Element element, ParserContext parserContext)
BeanDefinitionParserElement and register the resulting
BeanDefinition(s) with the
BeanDefinitionRegistry
embedded in the supplied ParserContext.
Implementations must return the primary BeanDefinition that 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 return
null if they will not be used in a nested fashion.
parse in interface BeanDefinitionParserelement - the element that is to be parsed into one or more BeanDefinitionsparserContext - the object encapsulating the current state of the parsing process;
provides access to a BeanDefinitionRegistryBeanDefinition