本文整理汇总了Java中org.springframework.transaction.TransactionTimedOutException类的典型用法代码示例。如果您正苦于以下问题:Java TransactionTimedOutException类的具体用法?Java TransactionTimedOutException怎么用?Java TransactionTimedOutException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TransactionTimedOutException类属于org.springframework.transaction包,在下文中一共展示了TransactionTimedOutException类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: doTranslate
import org.springframework.transaction.TransactionTimedOutException; //导入依赖的package包/类
public static RuntimeException doTranslate(final Exception ex) {
if (ex instanceof JpoException) {
throw (JpoException) ex;
}
if (ex instanceof BadSqlGrammarException) {
return new JpoSqlBadGrammarException(ex);
} else if (ex instanceof DataIntegrityViolationException) {
return new JpoSqlDataIntegrityViolationException(ex);
} else if (ex instanceof DataAccessResourceFailureException) {
return new JpoSqlDataAccessResourceFailureException(ex);
} else if (ex instanceof TransientDataAccessResourceException) {
return new JpoSqlTransientDataAccessResourceException(ex);
} else if (ex instanceof ConcurrencyFailureException) {
return new JpoSqlConcurrencyFailureException(ex);
} else if (ex instanceof TransactionTimedOutException) {
return new JpoTransactionTimedOutException(ex);
}
return new JpoSqlException(ex);
}
开发者ID:ufoscout,项目名称:jporm,代码行数:20,代码来源:JdbcTemplateExceptionTranslator.java
示例2: testTransactionTimeout
import org.springframework.transaction.TransactionTimedOutException; //导入依赖的package包/类
@Test
public void testTransactionTimeout()
{
TransactionException transactionException = new TransactionTimedOutException("Transaction timeout test.");
when(transactionOperations.execute(any())).thenThrow(transactionException);
try
{
job.call();
fail("TransactionException should be thrown");
}
catch (TransactionException expected)
{
assertSame(expected, transactionException);
}
verify(transactionOperations).execute(any());
verify(progress).failed(transactionException);
verifyNoMoreInteractions(callable, progress, transactionOperations);
}
开发者ID:molgenis,项目名称:molgenis,代码行数:19,代码来源:JobTest.java
示例3: getTimeToLiveInMillis
import org.springframework.transaction.TransactionTimedOutException; //导入依赖的package包/类
/**
* Return the time to live for this object in milliseconds.
* @return number of millseconds until expiration
* @throws TransactionTimedOutException if the deadline has already been reached
*/
public long getTimeToLiveInMillis() throws TransactionTimedOutException{
if (this.deadline == null) {
throw new IllegalStateException("No timeout specified for this resource holder");
}
long timeToLive = this.deadline.getTime() - System.currentTimeMillis();
checkTransactionTimeout(timeToLive <= 0);
return timeToLive;
}
开发者ID:lamsfoundation,项目名称:lams,代码行数:14,代码来源:ResourceHolderSupport.java
示例4: checkTransactionTimeout
import org.springframework.transaction.TransactionTimedOutException; //导入依赖的package包/类
/**
* Set the transaction rollback-only if the deadline has been reached,
* and throw a TransactionTimedOutException.
*/
private void checkTransactionTimeout(boolean deadlineReached) throws TransactionTimedOutException {
if (deadlineReached) {
setRollbackOnly();
throw new TransactionTimedOutException("Transaction timed out: deadline was " + this.deadline);
}
}
开发者ID:lamsfoundation,项目名称:lams,代码行数:11,代码来源:ResourceHolderSupport.java
示例5: convertJiniException
import org.springframework.transaction.TransactionTimedOutException; //导入依赖的package包/类
protected RuntimeException convertJiniException(Exception exception) {
if (exception instanceof LeaseException) {
return new RemoteAccessException("Lease denied", exception);
}
if (exception instanceof TransactionException || exception instanceof net.jini.core.transaction.TransactionException) {
return new TransactionSystemException(exception.getMessage(), exception);
}
if (exception instanceof RemoteException) {
// Translate to Spring's unchecked remote access exception
return new RemoteAccessException("RemoteException", exception);
}
if (exception instanceof UnusableEntryException) {
return new RemoteAccessException("Unusable entry", exception);
}
if (exception instanceof RuntimeException) {
return (RuntimeException) exception;
}
if (exception instanceof TimeoutExpiredException) {
throw new TransactionTimedOutException("Transaction timed out (either the transaction or commit/abort)",
exception);
}
return new UnexpectedTransactionException(exception);
}
开发者ID:Gigaspaces,项目名称:xap-openspaces,代码行数:30,代码来源:AbstractJiniTransactionManager.java
注:本文中的org.springframework.transaction.TransactionTimedOutException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论