public class ChainedTransactionManager extends java.lang.Object implements PlatformTransactionManager
PlatformTransactionManager implementation that orchestrates transaction creation, commits and rollbacks to a list of delegates. Using this implementation assumes that errors causing a transaction rollback will usually happen before the transaction completion or during the commit of the most inner PlatformTransactionManager.
The configured instances will start transactions in the order given and commit/rollback in reverse order, which means the PlatformTransactionManager most likely to break the transaction should be the last in the list configured. A PlatformTransactionManager throwing an exception during commit will automatically cause the remaining transaction managers to roll back instead of committing. original source: https://github.com/spring-projects/spring-data-commons/blob/master/src/main/java/org/springframework/data/transaction/ChainedTransactionManager.java
Constructor and description |
---|
ChainedTransactionManager(PlatformTransactionManager transactionManagers) Creates a new ChainedTransactionManager delegating to the given PlatformTransactionManagers. |
Type Params | Return Type | Name and description |
---|---|---|
|
protected boolean |
canCreateTransaction(TransactionDefinition definition) |
|
public void |
commit(TransactionStatus status) |
|
public MultiTransactionStatus |
getTransaction(TransactionDefinition definition) |
|
public java.util.List<PlatformTransactionManager> |
getTransactionManagers() |
|
public void |
rollback(TransactionStatus status) |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Creates a new ChainedTransactionManager delegating to the given PlatformTransactionManagers.
transactionManagers
- must not be null or empty.