如何在 Java 中使用 Jackson 在序列化期间忽略一个类?


Jackson @JsonIgnoreType 注释 可以用来在 **序列化 过程中 **忽略一个 **类 ,它可以标记类的所有 **属性 或 **字段 **在序列化和反序列化 JSON 对象时会被忽略。

语法

@Target(value={ANNOTATION_TYPE,TYPE})
@Retention(value=RUNTIME)
public @interface JsonIgnoreType

示例

import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.databind.*;
import java.io.*;
public class JsonIgnoreTypeTest {
   public static void main(String args[]) throws IOException {
      Employee emp = new Employee();
      ObjectMapper mapper = new ObjectMapper();
      String jsonString = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(emp);
      System.out.println(jsonString);
   }
}
// Employee class
class Employee {
   @JsonIgnoreType
   public static class Address {
      public String firstLine = null;
      public String secondLine= null;
      public String thirdLine = null;
      @Override
      public String toString() {
         return "Address{" +
                "firstLine='" + firstLine+ '\'' +
                ", secondLine='" + secondLine+ '\'' +
                ", thirdLine='" + thirdLine + '\'' +
                '}';
      }
   } // end of Address class
   public long empId = 115;
   public String empName = "Raja Ramesh";
   public Address empAddress = new Address();
   @Override
   public String toString() {
      return "Employee{" +
             "empId=" + empId +
             ", empName='" + empName + '\'' +
             ", empAddress=" + empAddress +
             '}';
   }
}

输出

{
   "empId" : 115,
   "empName" : "Raja Ramesh"
}

更新时间: 06-Jul-2020

已阅:2 千次以上

开启您的 事业

完成课程以获得认证

开始学习
广告