Class BindableRuleBasedTransactionAttribute
java.lang.Object
org.springframework.transaction.support.DefaultTransactionDefinition
org.springframework.transaction.interceptor.DefaultTransactionAttribute
io.micronaut.spring.tx.annotation.BindableRuleBasedTransactionAttribute
- All Implemented Interfaces:
Serializable, org.springframework.transaction.interceptor.TransactionAttribute, org.springframework.transaction.TransactionDefinition
public class BindableRuleBasedTransactionAttribute
extends org.springframework.transaction.interceptor.DefaultTransactionAttribute
Extends
RuleBasedTransactionAttribute so that it can be bound
from annotation metadata and defaults to rollback on all exception types apart from those configured.- Since:
- 1.0
- Author:
- graemerocher
- See Also:
-
Field Summary
Fields inherited from class org.springframework.transaction.support.DefaultTransactionDefinition
PREFIX_ISOLATION, PREFIX_PROPAGATION, PREFIX_TIMEOUT, READ_ONLY_MARKERFields 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 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanrollbackOn(Throwable ex) final voidsetNoRollbackFor(Class<? extends Throwable>... exceptions) Configures the exceptions to not rollback for.final voidsetRollbackFor(Class<? extends Throwable>... exceptions) Configures the exceptions to rollback for.Methods inherited from class org.springframework.transaction.interceptor.DefaultTransactionAttribute
getAttributeDescription, getDescriptor, getLabels, getQualifier, getTimeoutString, resolveAttributeStrings, setDescriptor, setLabels, setQualifier, setTimeoutStringMethods inherited from class org.springframework.transaction.support.DefaultTransactionDefinition
equals, getDefinitionDescription, getIsolationLevel, getName, getPropagationBehavior, getTimeout, hashCode, isReadOnly, setIsolationLevel, setIsolationLevelName, setName, setPropagationBehavior, setPropagationBehaviorName, setReadOnly, setTimeout, toStringMethods inherited from interface org.springframework.transaction.TransactionDefinition
getIsolationLevel, getName, getPropagationBehavior, getTimeout, isReadOnly
-
Constructor Details
-
BindableRuleBasedTransactionAttribute
public BindableRuleBasedTransactionAttribute()
-
-
Method Details
-
setNoRollbackFor
-
setRollbackFor
-
getNoRollbackFor
-
getRollbackFor
-
rollbackOn
- Specified by:
rollbackOnin interfaceorg.springframework.transaction.interceptor.TransactionAttribute- Overrides:
rollbackOnin classorg.springframework.transaction.interceptor.DefaultTransactionAttribute
-