| org.springframework.transaction.support.ResourceTransactionManager
All known Subclasses: org.springframework.jdbc.datasource.DataSourceTransactionManager, org.springframework.orm.jpa.JpaTransactionManager, org.springframework.orm.hibernate3.HibernateTransactionManager, org.springframework.jca.cci.connection.CciLocalTransactionManager, org.springframework.jms.connection.JmsTransactionManager, org.springframework.orm.jdo.JdoTransactionManager, org.springframework.orm.toplink.TopLinkTransactionManager,
ResourceTransactionManager | public interface ResourceTransactionManager extends PlatformTransactionManager(Code) | | Extension of the
org.springframework.transaction.PlatformTransactionManager interface, indicating a native resource transaction manager, operating on a single
target resource. Such transaction managers differ from JTA transaction managers in
that they do not use XA transaction enlistment for an open number of resources but
rather focus on leveraging the native power and simplicity of a single target resource.
This interface is mainly used for abstract introspection of a transaction manager,
giving clients a hint on what kind of transaction manager they have been given
and on what concrete resource the transaction manager is operating on.
author: Juergen Hoeller since: 2.0.4 See Also: TransactionSynchronizationManager |
|
|