Gson库为它读写的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中文网其他相关文章!