可以使用 Jackson? 反序列化为具有私有字段和自定义参数构造函数的类,而无需使用注释和修改类
我知道在杰克逊中使用这种组合是可能的:1)Java 8,2)使用“-parameters”选项编译,3)参数名称与 JSON 匹配。但是在没有所有这些限制的情况下,默认情况下在 GSON 中也是可能的。
例如:
public class Person {
private final String firstName;
private final String lastName;
private final int age;
public Person(String firstName, String lastName, int age) {
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
}
public static void main(String[] args) throws IOException {
String json = "{firstName: \"Foo\", lastName: \"Bar\", age: 30}";
System.out.println("GSON: " + deserializeGson(json)); // works fine
System.out.println("Jackson: " + deserializeJackson(json)); // error
}
public static Person deserializeJackson(String json) throws IOException {
ObjectMapper mapper = new ObjectMapper();
mapper.enable(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES);
mapper.setVisibility(PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY);
return mapper.readValue(json, Person.class);
}
public static Person deserializeGson(String json) {
Gson gson = new GsonBuilder().create();
return gson.fromJson(json, Person.class);
}
}
这适用于 GSON,但杰克逊抛出:
Exception in thread "main" com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of `jacksonParametersTest.Person` (no Creators, like default construct, exist): cannot deserialize from Object value (no delegate- or property-based Creator)
at [Source: (String)"{firstName: "Foo", lastName: "Bar", age: 30}"; line: 1, column: 2]
at com.fasterxml.jackson.databind.exc.InvalidDefinitionException.from(InvalidDefinitionException.java:67)
这在 GSON 中是可能的,所以我希望 Jackson 中必须有某种方法,而无需修改 Person 类、没有 Java 8,也没有显式的自定义反序列化器。有人知道解决方案吗?
- 更新,附加信息
Gson 似乎跳过了参数构造函数,因此它必须在幕后使用反射创建一个无参数构造函数。
此外,即使没有“-parameters”编译器标志,也有一个Kotlin Jackson 模块能够为 Kotlin 数据类执行此操作。所以奇怪的是,Java Jackson 似乎不存在这样的解决方案。
这是 Kotlin Jackson 中可用的(漂亮而干净的)解决方案(IMO 也应该通过自定义模块在 Java Jackson 中可用):
val mapper = ObjectMapper()
.enable(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES)
.registerModule(KotlinModule())
val person: Person = mapper.readValue(json, Person::class.java)