public class AnnotationDrivenBeanDefinitionParser extends Object implements BeanDefinitionParser
Modifier and Type | Field and Description |
---|---|
static String |
ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME
Deprecated.
as of Spring 3.1 in favor of
AnnotationConfigUtils.ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME |
static String |
ASYNC_EXECUTION_ASPECT_BEAN_NAME
Deprecated.
as of Spring 3.1 in favor of
AnnotationConfigUtils.ASYNC_EXECUTION_ASPECT_BEAN_NAME |
static String |
SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME
Deprecated.
as of Spring 3.1 in favor of
AnnotationConfigUtils.SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME |
Constructor and Description |
---|
AnnotationDrivenBeanDefinitionParser() |
Modifier and Type | Method and Description |
---|---|
BeanDefinition |
parse(Element element,
ParserContext parserContext)
Parse the specified
Element and register the resulting
BeanDefinition(s) with the
BeanDefinitionRegistry
embedded in the supplied ParserContext . |
@Deprecated public static final String ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME
AnnotationConfigUtils.ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME
@Deprecated public static final String ASYNC_EXECUTION_ASPECT_BEAN_NAME
AnnotationConfigUtils.ASYNC_EXECUTION_ASPECT_BEAN_NAME
@Deprecated public static final String SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME
AnnotationConfigUtils.SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME
public AnnotationDrivenBeanDefinitionParser()
public BeanDefinition parse(Element element, ParserContext parserContext)
BeanDefinitionParser
Element
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 BeanDefinitionParser
element
- the element that is to be parsed into one or more BeanDefinitions
parserContext
- the object encapsulating the current state of the parsing process;
provides access to a BeanDefinitionRegistry
BeanDefinition