本文整理汇总了Java中javax.transaction.Transaction.equals方法的典型用法代码示例。如果您正苦于以下问题:Java Transaction.equals方法的具体用法?Java Transaction.equals怎么用?Java Transaction.equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.transaction.Transaction
的用法示例。
在下文中一共展示了Transaction.equals方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: markTransactionAsRollbackOnly
import javax.transaction.Transaction; //导入方法依赖的package包/类
private void markTransactionAsRollbackOnly(Method method) throws Exception {
Transaction currentTx = _transactionManager.getTransaction();
if (_logger.isDebugEnabled()) {
_logger.debug(String.format("%s is marking the transaction as rollback only: currentTx=%s, startedTx=%s, suspendedTx=%s",
Thread.currentThread().getName(), currentTx, _startedTx, _suspendedTx));
}
if (_startedTx != null) {
if (currentTx != null && currentTx.equals(_startedTx)) {
currentTx.setRollbackOnly();
} else {
// Suspend any bad transaction - there is bug somewhere, but we will try to tidy things up
JCALogger.ROOT_LOGGER.currentTransactionIsNotSameAsThe(currentTx, _startedTx.toString());
Transaction origTx = _transactionManager.suspend();
try {
_transactionManager.resume(_startedTx);
_startedTx.setRollbackOnly();
} finally {
// Resume any suspended transaction
if (origTx != null) {
try {
_transactionManager.suspend();
_transactionManager.resume(origTx);
} catch (Throwable t) {
JCALogger.ROOT_LOGGER.messageEndpointFailedToResumeOldTransaction(_delegate.toString(), origTx.toString());
}
}
}
}
} else if (_messageEndpointFactory.isDeliveryTransacted(method)
&& currentTx != null && currentTx.getStatus() == Status.STATUS_ACTIVE) {
// Set rollback only flag on a source managed Tx
currentTx.setRollbackOnly();
}
}