@Until Annotation kann mit der setVersion()-Methode der GsonBuilder-Klasse verwendet werden. Diese Annotation kann auf Felder in Java-Klassen angewendet werden und akzeptiert Float als Argument. Dieser Parameter stellt die Versionsnummer dar, in die das Feld serialisiert wurde. @Until Annotation kann die Versionskontrolle von JSON-Klassen in Netzwerkdiensten verwalten.
@Documented @Retention(value=RUNTIME) @Target(value={FIELD,TYPE}) public @interface Until
import com.google.gson.annotations.Until; import com.google.gson.Gson; import com.google.gson.GsonBuilder; public class GsonUntilAnnotationTest { public static void main(String[] args) { Employee emp = new Employee(); emp.setEmployeeName("Adithya"); emp.setEmployeeId(115); emp.setEmployeeTechnology("Python"); emp.setEmploeeAddress("Pune"); System.out.println("Using version 0.5"); GsonBuilder gsonBuilder = new GsonBuilder(); Gson gson = gsonBuilder.setPrettyPrinting().setVersion(0.5).create(); String jsonString = gson.toJson(emp); System.out.println(jsonString); System.out.println("Using version 1.0"); gsonBuilder = new GsonBuilder(); gson = gsonBuilder.setPrettyPrinting().setVersion(1.0).create(); jsonString = gson.toJson(emp); System.out.println(jsonString); System.out.println("Using version 1.1"); gsonBuilder = new GsonBuilder(); gson = gsonBuilder.setPrettyPrinting().setVersion(1.1).create(); jsonString = gson.toJson(emp); System.out.println(jsonString); } } // Employee class class Employee { private String empName; private int empId; <strong> </strong>@Until(1.1) private String empTech; @Until(1.1<strong>)</strong> private String empAddress; public String getEmployeeName() { return empName; } public void setEmployeeName(String empName) { this.empName = empName; } public int getEmployeeId() { return empId; } public void setEmployeeId(int empId) { this.empId = empId; } public String getEmployeeTechnology() { return empTech; } public void setEmployeeTechnology(String empTech) { this.empTech = empTech; } public String getEmploeeAddress() { return empAddress; } public void setEmploeeAddress(String empAddress) { this.empAddress = empAddress; } }
Using version 0.5 { "empName": "Adithya", "empId": 115, "empTech": "Python", "empAddress": "Pune" } Using version 1.0 { "empName": "Adithya", "empId": 115, "empTech": "Python", "empAddress": "Pune" } Using version 1.1<strong> </strong>{ "empName": "Adithya", "empId": 115 }
Das obige ist der detaillierte Inhalt vonWie verwende ich die @Until-Annotation der Gson-Bibliothek in Java?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!