Heim >Java >javaLernprogramm >Wie ignoriere ich eine bestimmte Klasse während der Serialisierung mit Jackson in Java?

Wie ignoriere ich eine bestimmte Klasse während der Serialisierung mit Jackson in Java?

WBOY
WBOYnach vorne
2023-08-19 09:25:04993Durchsuche

Wie ignoriere ich eine bestimmte Klasse während der Serialisierung mit Jackson in Java?

The Jackson @JsonIgnoreType Annotationen können zum Ignorieren einer Klasse während der Serialisierung verwendet werden und können alle Eigenschaften oder Felder einer Klasse markieren, die beim Serialisieren und Deserialisieren von JSON-Objekten ignoriert werden sollen.

Syntax

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

Beispiel

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;;
   }
}

Ausgabe

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

Das obige ist der detaillierte Inhalt vonWie ignoriere ich eine bestimmte Klasse während der Serialisierung mit Jackson in Java?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:tutorialspoint.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen