public interface TransactionAttribute extends TransactionDefinition
rollbackOn
specification to TransactionDefinition
.
As custom rollbackOn
is only possible with AOP, this class resides
in the AOP transaction package.DefaultTransactionAttribute
,
RuleBasedTransactionAttribute
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
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getQualifier()
Return a qualifier value associated with this transaction attribute.
|
boolean |
rollbackOn(java.lang.Throwable ex)
Should we roll back on the given exception?
|
getIsolationLevel, getName, getPropagationBehavior, getTimeout, isReadOnly
@Nullable java.lang.String getQualifier()
This may be used for choosing a corresponding transaction manager to process this specific transaction.
boolean rollbackOn(java.lang.Throwable ex)
ex
- the exception to evaluate