Package org.springframework.transaction.support

Support classes for the org.springframework.transaction package.

See:
          Description

Interface Summary
SmartTransactionObject Interface to be implemented by transaction objects that are able to return an internal rollback-only marker, typically from a another transaction that has participated and marked it as rollback-only.
TransactionCallback Callback interface for transactional code.
TransactionSynchronization Interface for transaction synchronization callbacks.
 

Class Summary
AbstractPlatformTransactionManager Abstract base class that implements Spring's standard transaction workflow, serving as basis for concrete platform transaction managers like JtaTransactionManager and DataSourceTransactionManager.
AbstractTransactionStatus Abstract base implementation of the TransactionStatus interface.
DefaultTransactionDefinition Default implementation of the TransactionDefinition interface, offering bean-style configuration and sensible default values (PROPAGATION_REQUIRED, ISOLATION_DEFAULT, TIMEOUT_DEFAULT, readOnly=false).
DefaultTransactionStatus Default implementation of the TransactionStatus interface, used by AbstractPlatformTransactionManager.
ResourceHolderSupport Convenient base class for resource holders.
SimpleTransactionStatus Simple, generic implementation of the TransactionStatus interface.
TransactionCallbackWithoutResult Simple convenience class for TransactionCallback implementation.
TransactionSynchronizationAdapter Adapter for the TransactionSynchronization interface.
TransactionSynchronizationManager Central helper that manages resources and transaction synchronizations per thread.
TransactionTemplate Helper class that simplifies programmatic transaction demarcation and transaction exception handling.
 

Package org.springframework.transaction.support Description

Support classes for the org.springframework.transaction package. Provides an abstract base class for transaction manager implementations, and a template plus callback for transaction demarcation.



Copyright (c) 2002-2007 The Spring Framework Project.