环境信息
Dubbo version: 2.6.0 Operating System version: centos Java version: 1.8
需求
泛化调用,返回值增加的class字段,建议增加开关。
举例
在PojoUtils.java中,有两处建议怎么增加该开关,如下:
1、put "class" 字段
Map<String, Object> map = new HashMap<String, Object>(); history.put(pojo, map); map.put("class", pojo.getClass().getName());
2、根据条件remove "class" 字段
// when return type is not the subclass of return type from the signature and not an interface if (!type.isInterface() && !type.isAssignableFrom(pojo.getClass())) { try { map = (Map<Object, Object>) type.newInstance(); Map<Object, Object> mapPojo = (Map<Object, Object>) pojo; map.putAll(mapPojo); map.remove("class"); } catch (Exception e) { //ignore error map = (Map<Object, Object>) pojo; } } else { map = (Map<Object, Object>) pojo; }
期待修改成以下代码:
1、put "class" 字段
Map<String, Object> map = new HashMap<String, Object>(); history.put(pojo, map); if (keepGenericClass){ // to increase the switch for control generics map.put("class", pojo.getClass().getName()); }
2、根据条件remove "class" 字段
// when return type is not the subclass of return type from the signature and not an interface if (!type.isInterface() && !type.isAssignableFrom(pojo.getClass())) { try { map = (Map<Object, Object>) type.newInstance(); Map<Object, Object> mapPojo = (Map<Object, Object>) pojo; map.putAll(mapPojo); if (keepGenericClass){ // to increase the switch for control generics map.remove("class"); } } catch (Exception e) { //ignore error map = (Map<Object, Object>) pojo; } } else { map = (Map<Object, Object>) pojo; }
原提问者GitHub用户shihuili1218
我将fastjson与类exclude一起使用
/** * remove specify class field refer to dubbo generic invoke */ private static final SimplePropertyPreFilter CLASS_NAME_PRE_FILTER = new SimplePropertyPreFilter(HashMap.class);
static {
CLASS_NAME_PRE_FILTER.getExcludes().add("class");
}
JSON.toJSONString(result, CLASS_NAME_PRE_FILTER
原回答者GitHub用户qixiaobo
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
阿里云拥有国内全面的云原生产品技术以及大规模的云原生应用实践,通过全面容器化、核心技术互联网化、应用 Serverless 化三大范式,助力制造业企业高效上云,实现系统稳定、应用敏捷智能。拥抱云原生,让创新无处不在。