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


Java CompatibleTypeUtils类代码示例

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


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

示例1: invoke

import com.alibaba.dubbo.common.utils.CompatibleTypeUtils; //导入依赖的package包/类
public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
    Result result = invoker.invoke(invocation);
    if (! invocation.getMethodName().startsWith("$") && ! result.hasException()) {
        Object value = result.getValue();
        if (value != null) {
            try {
                Method method = invoker.getInterface().getMethod(invocation.getMethodName(), invocation.getParameterTypes());
                Class<?> type = method.getReturnType();
                Object newValue;
                String serialization = invoker.getUrl().getParameter(Constants.SERIALIZATION_KEY); 
                if ("json".equals(serialization)
                        || "fastjson".equals(serialization)){
                    Type gtype = method.getGenericReturnType();
                    newValue = PojoUtils.realize(value, type, gtype);
                } else if (! type.isInstance(value)) {
                    newValue = PojoUtils.isPojo(type)
                        ? PojoUtils.realize(value, type) 
                        : CompatibleTypeUtils.compatibleTypeConvert(value, type);
                    
                } else {
                    newValue = value;
                }
                if (newValue != value) {
                    result = new RpcResult(newValue);
                }
            } catch (Throwable t) {
                logger.warn(t.getMessage(), t);
            }
        }
    }
    return result;
}
 
开发者ID:xingmima,项目名称:dubbos,代码行数:33,代码来源:CompatibleFilter.java

示例2: invoke

import com.alibaba.dubbo.common.utils.CompatibleTypeUtils; //导入依赖的package包/类
public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
    Result result = invoker.invoke(invocation);
    if (! invocation.getMethodName().startsWith("$") && ! result.hasException()) {
        Object value = result.getValue();
        if (value != null) {
            try {
                Method method = invoker.getInterface().getMethod(invocation.getMethodName(), invocation.getParameterTypes());
                Class<?> type = method.getReturnType();
                Object newValue;
                String serialization = invoker.getUrl().getParameter(Constants.SERIALIZATION_KEY); 
                if ("json".equals(serialization)){
                    Type gtype = method.getGenericReturnType();
                    newValue = PojoUtils.realize(value, type, gtype);
                } else if (! type.isInstance(value)) {
                    newValue = PojoUtils.isPojo(type)
                        ? PojoUtils.realize(value, type) 
                        : CompatibleTypeUtils.compatibleTypeConvert(value, type);
                    
                } else {
                    newValue = value;
                }
                if (newValue != value) {
                    result = new RpcResult(newValue);
                }
            } catch (Throwable t) {
                logger.warn(t.getMessage(), t);
            }
        }
    }
    return result;
}
 
开发者ID:linux-china,项目名称:dubbo3,代码行数:32,代码来源:CompatibleFilter.java

示例3: invoke

import com.alibaba.dubbo.common.utils.CompatibleTypeUtils; //导入依赖的package包/类
public Result invoke(Invoker<?> invoker, Invocation invocation) throws JahhanException {
	Result result = invoker.invoke(invocation);
	if (!invocation.getMethodName().startsWith("$") && !result.hasException()) {
		Object value = result.getValue();
		if (value != null) {
			try {
				Method method = invoker.getInterface().getMethod(invocation.getMethodName(),
						invocation.getParameterTypes());
				Class<?> type = method.getReturnType();
				Object newValue;
				String serialization = invoker.getUrl().getParameter(Constants.SERIALIZATION_KEY);
				if ("json".equals(serialization) || "fastjson".equals(serialization)) {
					Type gtype = method.getGenericReturnType();
					newValue = PojoUtils.realize(value, type, gtype);
				} else if (!type.isInstance(value)) {
					newValue = PojoUtils.isPojo(type) ? PojoUtils.realize(value, type)
							: CompatibleTypeUtils.compatibleTypeConvert(value, type);

				} else {
					newValue = value;
				}
				if (newValue != value) {
					result = new RpcResult(newValue);
				}
			} catch (Throwable t) {
				log.warn(t.getMessage(), t);
			}
		}
	}
	return result;
}
 
开发者ID:nince-wyj,项目名称:jahhan,代码行数:32,代码来源:CompatibleFilter.java

示例4: invoke

import com.alibaba.dubbo.common.utils.CompatibleTypeUtils; //导入依赖的package包/类
public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
    Result result = invoker.invoke(invocation);
    if (!invocation.getMethodName().startsWith("$") && !result.hasException()) {
        Object value = result.getValue();
        if (value != null) {
            try {
                Method method = invoker.getInterface().getMethod(invocation.getMethodName(), invocation.getParameterTypes());
                Class<?> type = method.getReturnType();
                Object newValue;
                String serialization = invoker.getUrl().getParameter(Constants.SERIALIZATION_KEY);
                if ("json".equals(serialization)
                        || "fastjson".equals(serialization)) {
                    Type gtype = method.getGenericReturnType();
                    newValue = PojoUtils.realize(value, type, gtype);
                } else if (!type.isInstance(value)) {
                    newValue = PojoUtils.isPojo(type)
                            ? PojoUtils.realize(value, type)
                            : CompatibleTypeUtils.compatibleTypeConvert(value, type);

                } else {
                    newValue = value;
                }
                if (newValue != value) {
                    result = new RpcResult(newValue);
                }
            } catch (Throwable t) {
                logger.warn(t.getMessage(), t);
            }
        }
    }
    return result;
}
 
开发者ID:hufeng,项目名称:dubbo2.js,代码行数:33,代码来源:CompatibleFilter.java


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