Gson @Expose Anotasi boleh digunakan untuk menandakan sama ada medan terdedah (terkandung atau tidak) untuk penyiaran atau pensirialisasian bersiri. @Expose Note Boleh ambil dua parameter, setiap parameter ialah nilai boolean, boleh ambil nilai true atau false. Untuk GSON bertindak balas kepada @Expose anotasi, kita perlu mencipta contoh Gson menggunakan GsonBuilder kelas dan perlu memanggil excludeFieldsWithoutExposeAnnotation() kaedah, yang mengkonfigurasi Gson sebagai Mengecualikan semua medan tanpa anotasi Dedahkan daripada bersiri atau penyahserikatan.
public GsonBuilder excludeFieldsWithoutExposeAnnotation()
import com.google.gson.*; import com.google.gson.annotations.*; public class JsonExcludeAnnotationTest { public static void main(String args[]) { Employee emp = new Employee("Raja", 28, 40000.00); Gson gson = new GsonBuilder().setPrettyPrinting().create(); String jsonStr = gson.toJson(emp); System.out.println(jsonStr); gson = new GsonBuilder().setPrettyPrinting().excludeFieldsWithoutExposeAnnotation().create(); jsonStr = gson.toJson(emp); System.out.println(jsonStr); } } // Employee class class Employee { @Expose(serialize = true, deserialize = true) public String name; @Expose(serialize = true, deserialize = true) public int age; @Expose(serialize = false, deserialize = false)<strong> </strong> public double salary; public Employee(String name, int age, double salary) { this.name = name; this.age = age; this.salary = salary; } }
{ "name": "Raja", "age": 28, "salary": 40000.0 } { "name": "Raja", "age": 28 }#🎜🎜
Atas ialah kandungan terperinci Bagaimana untuk mengecualikan medan daripada JSON menggunakan anotasi @Expose dalam Java?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!