Gson: esclusi i campi dalla serializzazione
Per impostazione predefinita, GSON esclude i campi temporanei e statici dal processo di serializzazione / deserializzazione. Diamo un'occhiata al seguente esempio.
Esempio
Crea un file di classe Java denominato GsonTester in C: \> GSON_WORKSPACE.
File − GsonTester.java
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
public class GsonTester {
public static void main(String args[]) {
GsonBuilder builder = new GsonBuilder();
Gson gson = builder.create();
Student student = new Student();
student.setRollNo(1);
student.setName("Mahesh Kumar");
student.setVerified(true);
student.setId(1);
student.className = "VI";
String jsonString = gson.toJson(student);
System.out.println(jsonString);
}
}
class Student {
private int rollNo;
private String name;
private boolean verified;
private transient int id;
public static String className;
public int getRollNo() {
return rollNo;
}
public void setRollNo(int rollNo) {
this.rollNo = rollNo;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void setVerified(boolean verified) {
this.verified = verified;
}
public boolean isVerified() {
return verified;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
Verifica il risultato
Compila le classi usando javac compilatore come segue -
C:\GSON_WORKSPACE>javac GsonTester.java
Ora esegui il file GsonTester per vedere il risultato -
C:\GSON_WORKSPACE>java GsonTester
Verifica l'output
{"rollNo":1,"name":"Mahesh Kumar","verified":true}
Utilizzo di excludeFieldsWithModifiers
GsonBuilder fornisce il controllo sull'esclusione di campi con un particolare modificatore utilizzando il metodo excludeFieldsWithModifiers () dal processo di serializzazione / deserializzazione. Vedi il seguente esempio.
Esempio
Crea un file di classe Java denominato GsonTester in C: \> GSON_WORKSPACE.
File − GsonTester.java
import java.lang.reflect.Modifier;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
public class GsonTester {
public static void main(String args[]) {
GsonBuilder builder = new GsonBuilder();
builder.excludeFieldsWithModifiers(Modifier.TRANSIENT);
Gson gson = builder.create();
Student student = new Student();
student.setRollNo(1);
student.setName("Mahesh Kumar");
student.setVerified(true);
student.setId(1);
student.className = "VI";
String jsonString = gson.toJson(student);
System.out.println(jsonString);
}
}
class Student {
private int rollNo;
private String name;
private boolean verified;
private transient int id;
public static String className;
public int getRollNo() {
return rollNo;
}
public void setRollNo(int rollNo) {
this.rollNo = rollNo;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void setVerified(boolean verified) {
this.verified = verified;
}
public boolean isVerified() {
return verified;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
Verifica il risultato
Compila le classi usando javac compilatore come segue -
C:\GSON_WORKSPACE>javac GsonTester.java
Ora esegui il file GsonTester per vedere il risultato -
C:\GSON_WORKSPACE>java GsonTester
Verifica l'output
{"rollNo":1,"name":"Mahesh Kumar","verified":true,"className":"VI"}
Utilizzo di @Expose Annotation
Gson fornisce @Exposeannotazione per controllare la serializzazione / deserializzazione Json di una classe in base al suo ambito. Considera la seguente classe con una variabile avente@Exposesupporto. In questa classe,name e rollnole variabili devono essere esposte per la serializzazione. Quindi abbiamo usato il fileGsonBuilder.excludeFieldsWithoutExposeAnnotation()metodo per indicare che solo le variabili esposte devono essere serializzate / deserializzate. Vedi il seguente esempio.
Esempio
Crea un file di classe Java denominato GsonTester in C: \> GSON_WORKSPACE.
File − GsonTester.java
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.annotations.Expose;
public class GsonTester {
public static void main(String args[]) {
GsonBuilder builder = new GsonBuilder();
builder.excludeFieldsWithoutExposeAnnotation();
Gson gson = builder.create();
Student student = new Student();
student.setRollNo(1);
student.setName("Mahesh Kumar");
student.setVerified(true);
student.setId(1);
student.className = "VI";
String jsonString = gson.toJson(student);
System.out.println(jsonString);
}
}
class Student {
@Expose
private int rollNo;
@Expose
private String name;
private boolean verified;
private int id;
public static String className;
public int getRollNo() {
return rollNo;
}
public void setRollNo(int rollNo) {
this.rollNo = rollNo;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void setVerified(boolean verified) {
this.verified = verified;
}
public boolean isVerified() {
return verified;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
Verifica il risultato
Compila le classi usando javac compilatore come segue -
C:\GSON_WORKSPACE>javac GsonTester.java
Ora esegui il file GsonTester per vedere il risultato -
C:\GSON_WORKSPACE>java GsonTester
Verifica l'output
{"rollNo":1,"name":"Mahesh Kumar"}