欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jackson对象转Json忽略指定字段分析

程序员文章站 2022-05-04 09:21:42
1、忽略指定字段 @jsonignoreproperties({"ordered", "opened"}) public class membershipfe...

1、忽略指定字段

@jsonignoreproperties({"ordered", "opened"})

public class membershipfee {

    .........

}

经过以上注解的设置,ordered和opened字段将不会转json

2、忽略内容为空的字段

@jsonignoreproperties(ignoreunknown = true)

public class membershipfee {

    .........

}

经过以上设置,内容为null的字段将不再转json