Class TxNamespaceHandler
java.lang.Object
org.springframework.beans.factory.xml.NamespaceHandlerSupport
org.springframework.transaction.config.TxNamespaceHandler
- All Implemented Interfaces:
NamespaceHandler
NamespaceHandler
allowing for the configuration of
declarative transaction management using either XML or using annotations.
This namespace handler is the central piece of functionality in the Spring transaction management facilities and offers two approaches to declaratively manage transactions.
One approach uses transaction semantics defined in XML using the
<tx:advice>
elements, the other uses annotations
in combination with the <tx:annotation-driven>
element.
Both approached are detailed to great extent in the Spring reference manual.
- Since:
- 2.0
- Author:
- Rob Harrop, Juergen Hoeller
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
init()
Invoked by theDefaultBeanDefinitionDocumentReader
after construction but before any custom elements are parsed.Methods inherited from class org.springframework.beans.factory.xml.NamespaceHandlerSupport
decorate, parse, registerBeanDefinitionDecorator, registerBeanDefinitionDecoratorForAttribute, registerBeanDefinitionParser
-
Constructor Details
-
TxNamespaceHandler
public TxNamespaceHandler()
-
-
Method Details
-
init
public void init()Description copied from interface:NamespaceHandler
Invoked by theDefaultBeanDefinitionDocumentReader
after construction but before any custom elements are parsed.
-