首頁  >  文章  >  Java  >  如何在Java中配置Gson以啟用版本支援?

如何在Java中配置Gson以啟用版本支援?

PHPz
PHPz轉載
2023-08-20 22:45:07645瀏覽

如何在Java中配置Gson以啟用版本支援?

Gsonlibrary 為其讀取和寫入的Java 物件提供了一個簡單的版本控制系統,並且還提供了一個名為@Since 用於版本控制概念 @Since(versionnumber).

我們可以使用GsonBuilder().setVersion() 來建立具有版本控制的Gson 實例###方法。如果我們提到像setVersion(2.0),意味著所有具有2.0或更少的欄位都可以解析。

語法

public GsonBuilder setVersion(double ignoreVersionsAfter)

範例

import com.google.gson.*;
import com.google.gson.annotations.*;
public class VersionSupportTest {
   public static void main(String[] args) {
      Person person = new Person();
      person.firstName = "Raja";
      person.lastName = "Ramesh";
      Gson gson1 = new GsonBuilder().setVersion(1.0).setPrettyPrinting().create();
      System.out.println("Version 1.0:");
      System.out.println(gson1.toJson(person));
      Gson gson2 = new GsonBuilder().setVersion(2.0).setPrettyPrinting().create();
      System.out.println("Version 2.0:");
      System.out.println(gson2.toJson(person));
   }
}
// Person class
class Person {
   @Since(1.0)
   public String firstName;
   @Since(2.0)<strong>
</strong>   public String lastName;
}

輸出

Version 1.0:
{
 "firstName": "Raja"
}
Version 2.0:
{
 "firstName": "Raja",
 "lastName": "Ramesh"
}

以上是如何在Java中配置Gson以啟用版本支援?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除