当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
TransactionAttribute (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.transaction.interceptor
Interface TransactionAttribute
- All Superinterfaces:
- TransactionDefinition
- All Known Implementing Classes:
- DefaultTransactionAttribute, DelegatingTransactionAttribute, RuleBasedTransactionAttribute
public interface TransactionAttribute
- extends TransactionDefinition
This interface adds a rollbackOn
specification to TransactionDefinition.
As custom rollbackOn
is only possible with AOP, this class resides
in the AOP transaction package.
- Since:
- 16.03.2003
- Author:
- Rod Johnson
- See Also:
DefaultTransactionAttribute
,
RuleBasedTransactionAttribute
Fields inherited from interface org.springframework.transaction.TransactionDefinition |
ISOLATION_DEFAULT, ISOLATION_READ_COMMITTED, ISOLATION_READ_UNCOMMITTED, ISOLATION_REPEATABLE_READ, ISOLATION_SERIALIZABLE, PROPAGATION_MANDATORY, PROPAGATION_NESTED, PROPAGATION_NEVER, PROPAGATION_NOT_SUPPORTED, PROPAGATION_REQUIRED, PROPAGATION_REQUIRES_NEW, PROPAGATION_SUPPORTS, TIMEOUT_DEFAULT |
rollbackOn
boolean rollbackOn(Throwable ex)
- Should we roll back on the given exception?
- Parameters:
ex
- the exception to evaluate
- Returns:
- whether to perform a rollback or not
Copyright © 2002-2007 The Spring Framework.