本文整理汇总了Java中javax.ejb.EJBTransactionRequiredException类的典型用法代码示例。如果您正苦于以下问题:Java EJBTransactionRequiredException类的具体用法?Java EJBTransactionRequiredException怎么用?Java EJBTransactionRequiredException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
EJBTransactionRequiredException类属于javax.ejb包,在下文中一共展示了EJBTransactionRequiredException类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getTemplateProducts_NoTransaction
import javax.ejb.EJBTransactionRequiredException; //导入依赖的package包/类
@Test(expected = EJBTransactionRequiredException.class)
public void getTemplateProducts_NoTransaction() {
// given
// when
localService.getTemplateProducts();
// then EJBTransactionRequiredException happens
}
开发者ID:servicecatalog,项目名称:oscm,代码行数:8,代码来源:ServiceProvisioningPartnerServiceLocalBeanContainerIT.java
示例2: getProductsForVendor_NoTransaction
import javax.ejb.EJBTransactionRequiredException; //导入依赖的package包/类
@Test(expected = EJBTransactionRequiredException.class)
public void getProductsForVendor_NoTransaction() {
// given
// when
localService.getProductsForVendor();
// then EJBTransactionRequiredException happens
}
开发者ID:servicecatalog,项目名称:oscm,代码行数:8,代码来源:ServiceProvisioningPartnerServiceLocalBeanContainerIT.java
示例3: assertAttribute
import javax.ejb.EJBTransactionRequiredException; //导入依赖的package包/类
private void assertAttribute(final String attribute, final Method method) throws Exception {
final MethodTransactionInfo info = (MethodTransactionInfo) attributes.get(method);
assertEquals(method.toString(), attribute, info.transAttribute);
try {
final Object[] args = new Object[method.getParameterTypes().length];
final Object result = method.invoke(bean, args);
assertEquals(attribute, result);
} catch (final InvocationTargetException e) {
assertEquals(attribute, "Mandatory");
assertTrue(e.getTargetException() instanceof EJBTransactionRequiredException);
}
}
开发者ID:apache,项目名称:tomee,代码行数:14,代码来源:TransactionAttributesTest.java
示例4: testMANDATORY_NoTx
import javax.ejb.EJBTransactionRequiredException; //导入依赖的package包/类
@Test(expected = EJBTransactionRequiredException.class)
public void testMANDATORY_NoTx() throws Exception {
TransactionInvocationHandlers.TX_MANDATORY.call(
callableReturns(new Object()), ctxStub);
}
开发者ID:servicecatalog,项目名称:oscm,代码行数:6,代码来源:TransactionInvocationHandlersTest.java
示例5: call
import javax.ejb.EJBTransactionRequiredException; //导入依赖的package包/类
public Object call(Callable<Object> callable, IInvocationCtx ctx)
throws Exception {
throw new EJBTransactionRequiredException(
"Transaction required (MANDATORY).");
}
开发者ID:servicecatalog,项目名称:oscm,代码行数:6,代码来源:TransactionInvocationHandlers.java
示例6: getAllMarketplace_TransactionMandatory
import javax.ejb.EJBTransactionRequiredException; //导入依赖的package包/类
@Test(expected = EJBTransactionRequiredException.class)
public void getAllMarketplace_TransactionMandatory() {
marketplaceLocalService.getAllMarketplaces();
}
开发者ID:servicecatalog,项目名称:oscm,代码行数:5,代码来源:MarketplaceServiceLocalBeanQueryIT.java
示例7: testPersistWithNoTx
import javax.ejb.EJBTransactionRequiredException; //导入依赖的package包/类
@Test(expected = EJBTransactionRequiredException.class)
public void testPersistWithNoTx() {
employeeDAO.persist(new Employee());
}
开发者ID:victorrentea,项目名称:training,代码行数:5,代码来源:TransactionExerciseTest.java
示例8: convertException
import javax.ejb.EJBTransactionRequiredException; //导入依赖的package包/类
/**
* Renamed method so it shows up with a much more understandable purpose as it
* will be the top element in the stacktrace
*
* @param e Throwable
* @param method Method
* @param interfce Class
*/
protected Throwable convertException(Throwable e, final Method method, final Class interfce) {
final boolean rmiRemote = Remote.class.isAssignableFrom(interfce);
if (e instanceof TransactionRequiredException) {
if (!rmiRemote && interfaceType.isBusiness()) {
return new EJBTransactionRequiredException(e.getMessage()).initCause(getCause(e));
} else if (interfaceType.isLocal()) {
return new TransactionRequiredLocalException(e.getMessage()).initCause(getCause(e));
} else {
return e;
}
}
if (e instanceof TransactionRolledbackException) {
if (!rmiRemote && interfaceType.isBusiness()) {
return new EJBTransactionRolledbackException(e.getMessage()).initCause(getCause(e));
} else if (interfaceType.isLocal()) {
return new TransactionRolledbackLocalException(e.getMessage()).initCause(getCause(e));
} else {
return e;
}
}
if (e instanceof NoSuchObjectException) {
if (!rmiRemote && interfaceType.isBusiness()) {
return new NoSuchEJBException(e.getMessage()).initCause(getCause(e));
} else if (interfaceType.isLocal()) {
return new NoSuchObjectLocalException(e.getMessage()).initCause(getCause(e));
} else {
return e;
}
}
if (e instanceof AccessException) {
if (!rmiRemote && interfaceType.isBusiness()) {
return new AccessLocalException(e.getMessage()).initCause(getCause(e));
} else if (interfaceType.isLocal()) {
return new AccessLocalException(e.getMessage()).initCause(getCause(e));
} else {
return e;
}
}
if (e instanceof RemoteException) {
if (!rmiRemote && interfaceType.isBusiness()) {
return new EJBException(e.getMessage()).initCause(getCause(e));
} else if (interfaceType.isLocal()) {
return new EJBException(e.getMessage()).initCause(getCause(e));
} else {
return e;
}
}
for (final Class<?> type : method.getExceptionTypes()) {
if (type.isAssignableFrom(e.getClass())) {
return e;
}
}
// Exception is undeclared
// Try and find a runtime exception in there
while (e.getCause() != null && !(e instanceof RuntimeException)) {
e = e.getCause();
}
return e;
}
开发者ID:apache,项目名称:tomee,代码行数:70,代码来源:BaseEjbProxyHandler.java
注:本文中的javax.ejb.EJBTransactionRequiredException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论