org.springframework.transaction.config
Class TxAdviceBeanDefinitionParser
java.lang.Object
org.springframework.beans.factory.xml.AbstractBeanDefinitionParser
org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser
org.springframework.transaction.config.TxAdviceBeanDefinitionParser
- All Implemented Interfaces:
- BeanDefinitionParser
class TxAdviceBeanDefinitionParser
- extends AbstractSingleBeanDefinitionParser
BeanDefinitionParser
for the <tx:advice>
tag.
- Since:
- 2.0
- Author:
- Rob Harrop, Juergen Hoeller, Adrian Colyer
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ATTRIBUTES
private static final java.lang.String ATTRIBUTES
- See Also:
- Constant Field Values
TIMEOUT
private static final java.lang.String TIMEOUT
- See Also:
- Constant Field Values
READ_ONLY
private static final java.lang.String READ_ONLY
- See Also:
- Constant Field Values
NAME_MAP
private static final java.lang.String NAME_MAP
- See Also:
- Constant Field Values
PROPAGATION
private static final java.lang.String PROPAGATION
- See Also:
- Constant Field Values
ISOLATION
private static final java.lang.String ISOLATION
- See Also:
- Constant Field Values
ROLLBACK_FOR
private static final java.lang.String ROLLBACK_FOR
- See Also:
- Constant Field Values
NO_ROLLBACK_FOR
private static final java.lang.String NO_ROLLBACK_FOR
- See Also:
- Constant Field Values
TxAdviceBeanDefinitionParser
TxAdviceBeanDefinitionParser()
getBeanClass
protected java.lang.Class getBeanClass(org.w3c.dom.Element element)
- Description copied from class:
AbstractSingleBeanDefinitionParser
- Determine the bean class corresponding to the supplied
Element
.
Note that, for application classes, it is generally preferable to
override AbstractSingleBeanDefinitionParser.getBeanClassName(org.w3c.dom.Element)
instead, in order to avoid a direct
dependence on the bean implementation class. The BeanDefinitionParser
and its NamespaceHandler can be used within an IDE plugin then, even
if the application classes are not available on the plugin's classpath.
- Overrides:
getBeanClass
in class AbstractSingleBeanDefinitionParser
- Parameters:
element
- the Element
that is being parsed
- Returns:
- the
Class
of the bean that is being defined via parsing
the supplied Element
, or null
if none - See Also:
AbstractSingleBeanDefinitionParser.getBeanClassName(org.w3c.dom.Element)
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)
parseAttributeSource
private RootBeanDefinition parseAttributeSource(org.w3c.dom.Element attrEle,
ParserContext parserContext)
addRollbackRuleAttributesTo
private void addRollbackRuleAttributesTo(java.util.List<RollbackRuleAttribute> rollbackRules,
java.lang.String rollbackForValue)
addNoRollbackRuleAttributesTo
private void addNoRollbackRuleAttributesTo(java.util.List<RollbackRuleAttribute> rollbackRules,
java.lang.String noRollbackForValue)