当前位置: 首页>>代码示例>>Java>>正文


Java RemoteInvocationUtils类代码示例

本文整理汇总了Java中org.springframework.remoting.support.RemoteInvocationUtils的典型用法代码示例。如果您正苦于以下问题:Java RemoteInvocationUtils类的具体用法?Java RemoteInvocationUtils怎么用?Java RemoteInvocationUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


RemoteInvocationUtils类属于org.springframework.remoting.support包,在下文中一共展示了RemoteInvocationUtils类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: recreateRemoteInvocationResult

import org.springframework.remoting.support.RemoteInvocationUtils; //导入依赖的package包/类
@Override
protected Object recreateRemoteInvocationResult(RemoteInvocationResult result) throws Throwable {
    Throwable throwable = result.getException();
    if (throwable != null) {
        if (throwable instanceof InvocationTargetException)
            throwable = ((InvocationTargetException) throwable).getTargetException();
        if (throwable instanceof RemoteException) {
            Exception exception = ((RemoteException) throwable).getFirstCauseException();
            // This is a checked exception declared in a service method
            // or runtime exception supported by client
            if (exception != null) {
                RemoteInvocationUtils.fillInClientStackTraceIfPossible(exception);
                throw exception;
            }
        }
    }
    return super.recreateRemoteInvocationResult(result);
}
 
开发者ID:cuba-platform,项目名称:cuba,代码行数:19,代码来源:HttpServiceProxy.java

示例2: get

import org.springframework.remoting.support.RemoteInvocationUtils; //导入依赖的package包/类
@CheckForNull
public Object get() throws Throwable {
    // LOG.info("value=" + value + "; throwable=" + throwable);
    Throwable t = this.throwable;
    if (t == null)
        return this.value;
    while (t instanceof InvocationTargetException)
        t = ((InvocationTargetException) t).getTargetException();
    RemoteInvocationUtils.fillInClientStackTraceIfPossible(t);
    throw t;
}
 
开发者ID:shevek,项目名称:simple-xml-serializers,代码行数:12,代码来源:SimpleXmlInvocationResult.java


注:本文中的org.springframework.remoting.support.RemoteInvocationUtils类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。