Home  >  Article  >  Java  >  How to ignore a certain class during serialization using Jackson in Java?

How to ignore a certain class during serialization using Jackson in Java?

WBOY
WBOYforward
2023-08-19 09:25:04841browse

How to ignore a certain class during serialization using Jackson in Java?

The Jackson @JsonIgnoreType Annotations can be used to ignore a class during the serialization process, and can mark all attributes or fields of a class Ignored when serializing and deserializing JSON objects.

Syntax

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

Example

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 {
<strong>   </strong>@JsonIgnoreType<strong>
</strong>   public static class Address {
      public String firstLine = null;
      public String secondLine= null;
      public String thirdLine = null;
      @Override
      public String toString() {
         return "Address{" +
                "firstLine=&#39;" + firstLine+ &#39;\&#39;&#39; +
                ", secondLine=&#39;" + secondLine+ &#39;\&#39;&#39; +
                ", thirdLine=&#39;" + thirdLine + &#39;\&#39;&#39; +
                &#39;}&#39;;
      }
   } // end of Address class
   public long empId = 115;
   public String empName = "Raja Ramesh";
   public Address empAddress = new Address();
  <strong> </strong>@Override
   public String toString() {
      return "Employee{" +
             "empId=" + empId +
             ", empName=&#39;" + empName + &#39;\&#39;&#39; +
             ", empAddress=" + empAddress +
             &#39;}&#39;;
   }
}

Output

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

The above is the detailed content of How to ignore a certain class during serialization using Jackson in Java?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete