如何使用ObjectMapper在没有默认构造函数的情况下反序列化不可变对象?

如何使用ObjectMapper在没有默认构造函数的情况下反序列化不可变对象?,第1张

如何使用ObjectMapper在没有默认构造函数的情况下反序列化不可变对象

要让Jackson知道如何创建对象以进行反序列化,请为您的构造函数使用

@JsonCreator
@JsonProperty
注释,如下所示:

@JsonCreatorpublic importResultItemImpl(@JsonProperty("name") String name,         @JsonProperty("resultType") importResultItemType resultType,         @JsonProperty("message") String message) {    super();    this.resultType = resultType;    this.message = message;    this.name = name;}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5477604.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存