本文整理汇总了Java中org.springframework.remoting.RemoteProxyFailureException类的典型用法代码示例。如果您正苦于以下问题:Java RemoteProxyFailureException类的具体用法?Java RemoteProxyFailureException怎么用?Java RemoteProxyFailureException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
RemoteProxyFailureException类属于org.springframework.remoting包,在下文中一共展示了RemoteProxyFailureException类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: invoke
import org.springframework.remoting.RemoteProxyFailureException; //导入依赖的package包/类
@Override
public Object invoke(MethodInvocation methodInvocation) throws Throwable {
Object thriftProxy = ThriftUtil.buildClient(getServiceInterface(), protocolFactory.getProtocol(getTransport()));
ClassLoader originalClassLoader = overrideThreadContextClassLoader();
try {
return methodInvocation.getMethod().invoke(thriftProxy, methodInvocation.getArguments());
} catch (InvocationTargetException e) {
Throwable targetEx = e.getTargetException();
if (targetEx instanceof InvocationTargetException) {
targetEx = ((InvocationTargetException) targetEx).getTargetException();
}
if (targetEx instanceof TApplicationException && ((TApplicationException) targetEx).getType() == TApplicationException.MISSING_RESULT) {
return null;
} else {
throw targetEx;
}
} catch (Throwable ex) {
throw new RemoteProxyFailureException("Failed to invoke Thrift proxy for remote service [" + getServiceUrl() + "]", ex);
} finally {
resetThreadContextClassLoader(originalClassLoader);
}
}
开发者ID:funtl,项目名称:framework,代码行数:25,代码来源:ThriftClientInterceptor.java
示例2: rmiProxyFactoryBeanWithWrongBusinessInterface
import org.springframework.remoting.RemoteProxyFailureException; //导入依赖的package包/类
@Test
public void rmiProxyFactoryBeanWithWrongBusinessInterface() throws Exception {
CountingRmiProxyFactoryBean factory = new CountingRmiProxyFactoryBean();
factory.setServiceInterface(IWrongBusinessBean.class);
factory.setServiceUrl("rmi://localhost:1090/test");
factory.afterPropertiesSet();
assertTrue(factory.getObject() instanceof IWrongBusinessBean);
IWrongBusinessBean proxy = (IWrongBusinessBean) factory.getObject();
assertFalse(proxy instanceof IRemoteBean);
try {
proxy.setOtherName("name");
fail("Should have thrown RemoteProxyFailureException");
}
catch (RemoteProxyFailureException ex) {
assertTrue(ex.getCause() instanceof NoSuchMethodException);
assertTrue(ex.getMessage().contains("setOtherName"));
assertTrue(ex.getMessage().contains("IWrongBusinessBean"));
}
assertEquals(1, factory.counter);
}
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:21,代码来源:RmiSupportTests.java
示例3: testRmiProxyFactoryBeanWithWrongBusinessInterface
import org.springframework.remoting.RemoteProxyFailureException; //导入依赖的package包/类
public void testRmiProxyFactoryBeanWithWrongBusinessInterface() throws Exception {
CountingRmiProxyFactoryBean factory = new CountingRmiProxyFactoryBean();
factory.setServiceInterface(IWrongBusinessBean.class);
factory.setServiceUrl("rmi://localhost:1090/test");
factory.afterPropertiesSet();
assertTrue(factory.getObject() instanceof IWrongBusinessBean);
IWrongBusinessBean proxy = (IWrongBusinessBean) factory.getObject();
assertFalse(proxy instanceof IRemoteBean);
try {
proxy.setOtherName("name");
fail("Should have thrown RemoteProxyFailureException");
}
catch (RemoteProxyFailureException ex) {
assertTrue(ex.getCause() instanceof NoSuchMethodException);
assertTrue(ex.getMessage().indexOf("setOtherName") != -1);
assertTrue(ex.getMessage().indexOf("IWrongBusinessBean") != -1);
}
assertEquals(1, factory.counter);
}
开发者ID:deathspeeder,项目名称:class-guard,代码行数:20,代码来源:RmiSupportTests.java
示例4: invoke
import org.springframework.remoting.RemoteProxyFailureException; //导入依赖的package包/类
@Override
public Object invoke(MethodInvocation methodInvocation) throws Throwable {
if (this.thriftProxy == null) {
throw new IllegalStateException("ThriftClientInterceptor is not properly initialized - " +
"invoke 'prepare' before attempting any operations");
}
ClassLoader originalClassLoader = overrideThreadContextClassLoader();
try {
return methodInvocation.getMethod().invoke(thriftProxy, methodInvocation.getArguments());
} catch (InvocationTargetException e) {
Throwable targetEx = e.getTargetException();
if (targetEx instanceof InvocationTargetException) {
targetEx = ((InvocationTargetException) targetEx).getTargetException();
}
if (targetEx instanceof TApplicationException && ((TApplicationException) targetEx).getType() == TApplicationException.MISSING_RESULT) {
return null;
} else {
throw targetEx;
}
} catch (Throwable ex) {
throw new RemoteProxyFailureException(
"Failed to invoke Thrift proxy for remote service [" + getServiceUrl() + "]", ex);
} finally {
resetThreadContextClassLoader(originalClassLoader);
}
}
开发者ID:superhj1987,项目名称:spring-remoting-thrift,代码行数:28,代码来源:ThriftClientInterceptor.java
注:本文中的org.springframework.remoting.RemoteProxyFailureException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论