01、线上事变回顾

前段时间新增一个特地简略的性能,早晨上线前review代码时想到公司拼搏进取的价值观长期加一行log日志,感觉就一行简略的日志基本上没啥问题,后果刚上完线后一堆报警,连忙回滚了代码,找到问题删除了增加日志的代码,从新上线结束。

02、情景还原

定义了一个 CountryDTO
public class CountryDTO {    private String country;    public void setCountry(String country) {        this.country = country;    }    public String getCountry() {        return this.country;    }    public Boolean isChinaName() {        return this.country.equals("中国");    }}
定义测试类 FastJonTest
public class FastJonTest {    @Test    public void testSerialize() {        CountryDTO countryDTO = new CountryDTO();        String str = JSON.toJSONString(countryDTO);        System.out.println(str);    }}

运行时报空指针谬误:

通过报错信息能够看进去是 序列化的过程中执行了 isChinaName()办法,这时候this.country变量为空, 那么问题来了:

  • 序列化为什么会执行isChinaName()呢?
  • 引申一下,序列化过程中会执行那些办法呢?

03、源码剖析

通过debug察看调用链路的堆栈信息

调用链中的ASMSerializer_1_CountryDTO.writeFastJson应用asm技术动静生成了一个类ASMSerializer_1_CountryDTO,

asm技术其中一项应用场景就是通过到动静生成类用来代替java反射,从而防止反复执行时的反射开销

04、JavaBeanSerizlier序列化原理

通过下图看出序列化的过程中,次要是调用JavaBeanSerializer类的write()办法。

JavaBeanSerializer 次要是通过 getObjectWriter()办法获取,通过对getObjectWriter()执行过程的调试,找到比拟要害的com.alibaba.fastjson.serializer.SerializeConfig#createJavaBeanSerializer办法,进而找到 com.alibaba.fastjson.util.TypeUtils#computeGetters

public static List<FieldInfo> computeGetters(Class<?> clazz, //                                                 JSONType jsonType, //                                                 Map<String,String> aliasMap, //                                                 Map<String,Field> fieldCacheMap, //                                                 boolean sorted, //                                                 PropertyNamingStrategy propertyNamingStrategy //    ){        //省略局部代码....        Method[] methods = clazz.getMethods();        for(Method method : methods){            //省略局部代码...            if(method.getReturnType().equals(Void.TYPE)){                continue;            }            if(method.getParameterTypes().length != 0){                continue;            }         //省略局部代码...            JSONField annotation = TypeUtils.getAnnotation(method, JSONField.class);            //省略局部代码...            if(annotation != null){                if(!annotation.serialize()){                    continue;                }                if(annotation.name().length() != 0){                    //省略局部代码...                }            }            if(methodName.startsWith("get")){             //省略局部代码...            }            if(methodName.startsWith("is")){             //省略局部代码...            }        }}

从代码中大抵分为三种状况:

  • @JSONField(.serialize = false, name = "xxx")注解
  • getXxx() : get结尾的办法
  • isXxx():is结尾的办法

05、序列化流程图

06、示例代码

/** * case1: @JSONField(serialize = false) * case2: getXxx()返回值为void * case3: isXxx()返回值不等于布尔类型 * case4: @JSONType(ignores = "xxx") */@JSONType(ignores = "otherName")public class CountryDTO {    private String country;    public void setCountry(String country) {        this.country = country;    }    public String getCountry() {        return this.country;    }    public static void queryCountryList() {        System.out.println("queryCountryList()执行!!");    }    public Boolean isChinaName() {        System.out.println("isChinaName()执行!!");        return true;    }    public String getEnglishName() {        System.out.println("getEnglishName()执行!!");        return "lucy";    }    public String getOtherName() {        System.out.println("getOtherName()执行!!");        return "lucy";    }    /**     * case1: @JSONField(serialize = false)     */    @JSONField(serialize = false)    public String getEnglishName2() {        System.out.println("getEnglishName2()执行!!");        return "lucy";    }    /**     * case2: getXxx()返回值为void     */    public void getEnglishName3() {        System.out.println("getEnglishName3()执行!!");    }    /**     * case3: isXxx()返回值不等于布尔类型     */    public String isChinaName2() {        System.out.println("isChinaName2()执行!!");        return "isChinaName2";    }}

运行后果为:

isChinaName()执行!!getEnglishName()执行!!{"chinaName":true,"englishName":"lucy"}

07、代码标准

能够看进去序列化的规定还是很多的,比方有时须要关注返回值,有时须要关注参数个数,有时须要关注@JSONType注解,有时须要关注@JSONField注解;当一个事物的判断形式有多种的时候,因为团队人员把握知识点的水平不一样,这个方差很容易导致代码问题,所以尽量有一种举荐计划。这里举荐应用@JSONField(serialize = false)来显式的标注办法不参加序列化,上面是应用举荐计划后的代码,是不是一眼就能看进去哪些办法不须要参加序列化了。

public class CountryDTO {    private String country;    public void setCountry(String country) {        this.country = country;    }    public String getCountry() {        return this.country;    }    @JSONField(serialize = false)    public static void queryCountryList() {        System.out.println("queryCountryList()执行!!");    }    public Boolean isChinaName() {        System.out.println("isChinaName()执行!!");        return true;    }    public String getEnglishName() {        System.out.println("getEnglishName()执行!!");        return "lucy";    }    @JSONField(serialize = false)    public String getOtherName() {        System.out.println("getOtherName()执行!!");        return "lucy";    }    @JSONField(serialize = false)    public String getEnglishName2() {        System.out.println("getEnglishName2()执行!!");        return "lucy";    }    @JSONField(serialize = false)    public void getEnglishName3() {        System.out.println("getEnglishName3()执行!!");    }    @JSONField(serialize = false)    public String isChinaName2() {        System.out.println("isChinaName2()执行!!");        return "isChinaName2";    }}

08、三个频率高的序列化的状况

以上流程根本遵循 发现问题 --> 原理剖析 --> 解决问题 --> 升华(编程标准)。

  • 围绕业务上:解决问题 -> 如何抉择一种好的额解决方案 -> 好的解决形式如何扩大n个零碎利用;
  • 围绕技术上:解决单个问题,顺着单个问题把握这条线上的原理。