类 TransactionSynchronizationAdapter
- java.lang.Object
- org.springframework.transaction.support.TransactionSynchronizationAdapter
- 所有已实现的接口:
Flushable,Ordered,TransactionSynchronization
- 直接已知子类:
SpringFlushSynchronization
public abstract class TransactionSynchronizationAdapter extends Object implements TransactionSynchronization, Ordered
SimpleTransactionSynchronizationadapter containing empty method implementations, for easier overriding of single methods.Also implements the
Orderedinterface to enable the execution order of synchronizations to be controlled declaratively. The defaultorderisOrdered.LOWEST_PRECEDENCE, indicating late execution; return a lower value for earlier execution.- 从以下版本开始:
- 22.01.2004
- 作者:
- Juergen Hoeller
字段概要
从接口继承的字段 org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
从接口继承的字段 org.springframework.transaction.support.TransactionSynchronization
STATUS_COMMITTED, STATUS_ROLLED_BACK, STATUS_UNKNOWN
构造器概要
构造器 构造器 说明 TransactionSynchronizationAdapter()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidafterCommit()Invoked after transaction commit.voidafterCompletion(int status)Invoked after transaction commit/rollback.voidbeforeCommit(boolean readOnly)Invoked before transaction commit (before "beforeCompletion").voidbeforeCompletion()Invoked before transaction commit/rollback.voidflush()Flush the underlying session to the datastore, if applicable: for example, a Hibernate/JPA session.intgetOrder()Get the order value of this object.voidresume()Resume this synchronization.voidsuspend()Suspend this synchronization.
构造器详细资料
TransactionSynchronizationAdapter
public TransactionSynchronizationAdapter()
方法详细资料
getOrder
public int getOrder()
从接口复制的说明:OrderedGet the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet
load-on-startupvalues).Same order values will result in arbitrary sort positions for the affected objects.
- 指定者:
getOrder在接口中Ordered- 返回:
- the order value
- 另请参阅:
Ordered.HIGHEST_PRECEDENCE,Ordered.LOWEST_PRECEDENCE
suspend
public void suspend()
从接口复制的说明:TransactionSynchronizationSuspend this synchronization. Supposed to unbind resources from TransactionSynchronizationManager if managing any.
resume
public void resume()
从接口复制的说明:TransactionSynchronizationResume this synchronization. Supposed to rebind resources to TransactionSynchronizationManager if managing any.
flush
public void flush()
从接口复制的说明:TransactionSynchronizationFlush the underlying session to the datastore, if applicable: for example, a Hibernate/JPA session.- 指定者:
flush在接口中Flushable- 指定者:
flush在接口中TransactionSynchronization- 另请参阅:
TransactionStatus.flush()
beforeCommit
public void beforeCommit(boolean readOnly)
从接口复制的说明:TransactionSynchronizationInvoked before transaction commit (before "beforeCompletion"). Can e.g. flush transactional O/R Mapping sessions to the database.This callback does not mean that the transaction will actually be committed. A rollback decision can still occur after this method has been called. This callback is rather meant to perform work that's only relevant if a commit still has a chance to happen, such as flushing SQL statements to the database.
Note that exceptions will get propagated to the commit caller and cause a rollback of the transaction.
- 指定者:
beforeCommit在接口中TransactionSynchronization- 参数:
readOnly- whether the transaction is defined as read-only transaction- 另请参阅:
TransactionSynchronization.beforeCompletion()
beforeCompletion
public void beforeCompletion()
从接口复制的说明:TransactionSynchronizationInvoked before transaction commit/rollback. Can perform resource cleanup before transaction completion.This method will be invoked after
beforeCommit, even whenbeforeCommitthrew an exception. This callback allows for closing resources before transaction completion, for any outcome.
afterCommit
public void afterCommit()
从接口复制的说明:TransactionSynchronizationInvoked after transaction commit. Can perform further operations right after the main transaction has successfully committed.Can e.g. commit further operations that are supposed to follow on a successful commit of the main transaction, like confirmation messages or emails.
NOTE: The transaction will have been committed already, but the transactional resources might still be active and accessible. As a consequence, any data access code triggered at this point will still "participate" in the original transaction, allowing to perform some cleanup (with no commit following anymore!), unless it explicitly declares that it needs to run in a separate transaction. Hence: Use
PROPAGATION_REQUIRES_NEWfor any transactional operation that is called from here.- 指定者:
afterCommit在接口中TransactionSynchronization
afterCompletion
public void afterCompletion(int status)
从接口复制的说明:TransactionSynchronizationInvoked after transaction commit/rollback. Can perform resource cleanup after transaction completion.NOTE: The transaction will have been committed or rolled back already, but the transactional resources might still be active and accessible. As a consequence, any data access code triggered at this point will still "participate" in the original transaction, allowing to perform some cleanup (with no commit following anymore!), unless it explicitly declares that it needs to run in a separate transaction. Hence: Use
PROPAGATION_REQUIRES_NEWfor any transactional operation that is called from here.- 指定者:
afterCompletion在接口中TransactionSynchronization- 参数:
status- completion status according to theSTATUS_*constants- 另请参阅:
TransactionSynchronization.STATUS_COMMITTED,TransactionSynchronization.STATUS_ROLLED_BACK,TransactionSynchronization.STATUS_UNKNOWN,TransactionSynchronization.beforeCompletion()