org.springframework.context.config
Class LoadTimeWeaverBeanDefinitionParser
java.lang.Object
org.springframework.beans.factory.xml.AbstractBeanDefinitionParser
org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser
org.springframework.context.config.LoadTimeWeaverBeanDefinitionParser
- All Implemented Interfaces:
- BeanDefinitionParser
class LoadTimeWeaverBeanDefinitionParser
- extends AbstractSingleBeanDefinitionParser
Parser for the <context:load-time-weaver/> element.
- Since:
- 2.5
- Author:
- Juergen Hoeller
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
WEAVER_CLASS_ATTRIBUTE
private static final java.lang.String WEAVER_CLASS_ATTRIBUTE
- See Also:
- Constant Field Values
ASPECTJ_WEAVING_ATTRIBUTE
private static final java.lang.String ASPECTJ_WEAVING_ATTRIBUTE
- See Also:
- Constant Field Values
DEFAULT_LOAD_TIME_WEAVER_CLASS_NAME
private static final java.lang.String DEFAULT_LOAD_TIME_WEAVER_CLASS_NAME
- See Also:
- Constant Field Values
ASPECTJ_WEAVING_ENABLER_CLASS_NAME
private static final java.lang.String ASPECTJ_WEAVING_ENABLER_CLASS_NAME
- See Also:
- Constant Field Values
LoadTimeWeaverBeanDefinitionParser
LoadTimeWeaverBeanDefinitionParser()
getBeanClassName
protected java.lang.String getBeanClassName(org.w3c.dom.Element element)
- Description copied from class:
AbstractSingleBeanDefinitionParser
- Determine the bean class name corresponding to the supplied
Element
.
- Overrides:
getBeanClassName
in class AbstractSingleBeanDefinitionParser
- Parameters:
element
- the Element
that is being parsed
- Returns:
- the class name of the bean that is being defined via parsing
the supplied
Element
, or null
if none - See Also:
AbstractSingleBeanDefinitionParser.getBeanClass(org.w3c.dom.Element)
resolveId
protected java.lang.String resolveId(org.w3c.dom.Element element,
AbstractBeanDefinition definition,
ParserContext parserContext)
- Description copied from class:
AbstractBeanDefinitionParser
- Resolve the ID for the supplied
BeanDefinition
.
When using generation
, a name is generated automatically.
Otherwise, the ID is extracted from the "id" attribute, potentially with a
fallback
to a generated id.
- Overrides:
resolveId
in class AbstractBeanDefinitionParser
- Parameters:
element
- the element that the bean definition has been built fromdefinition
- the bean definition to be registeredparserContext
- the object encapsulating the current state of the parsing process;
provides access to a BeanDefinitionRegistry
- Returns:
- the resolved id
doParse
protected void doParse(org.w3c.dom.Element element,
ParserContext parserContext,
BeanDefinitionBuilder builder)
- Description copied from class:
AbstractSingleBeanDefinitionParser
- Parse the supplied
Element
and populate the supplied
BeanDefinitionBuilder
as required.
The default implementation delegates to the doParse
version without ParserContext argument.
- Overrides:
doParse
in class AbstractSingleBeanDefinitionParser
- Parameters:
element
- the XML element being parsedparserContext
- the object encapsulating the current state of the parsing processbuilder
- used to define the BeanDefinition
- See Also:
AbstractSingleBeanDefinitionParser.doParse(Element, BeanDefinitionBuilder)
isAspectJWeavingEnabled
protected boolean isAspectJWeavingEnabled(java.lang.String value,
ParserContext parserContext)
isBeanConfigurerAspectEnabled
protected boolean isBeanConfigurerAspectEnabled(java.lang.ClassLoader beanClassLoader)