Gson ライブラリは、読み書きする Java オブジェクト用の単純な バージョニング システム を提供し、また、 という名前の注釈も提供します。 @Since バージョン管理の概念について @Since(versionnumber).
GsonBuilder().setVersion() を使用して、バージョン管理を備えた Gson インスタンスを作成できます。 ###方法。 setVersion(2.0) のように言及した場合、 は 2.0 以下のすべてのフィールドが解析の対象となることを意味します。
Syntaxpublic 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 中国語 Web サイトの他の関連記事を参照してください。