在 java 中使用 Jackson 自定义 JSON Field 反序列化?

发布于 2024-10-21 13:10:19 字数 617 浏览 6 评论 0原文

给定一个像这样的简单实体类,

public class User
{
  @JsonProperty
  public Calendar createdOn;

  @JsonProperty
  public String name;
}

有没有办法让我连接到 Jackson Streaming API 来仅自定义反序列化createdOn 字段?如果没有的话,以后还会有这样的事情发生吗?

public class User
{
  @JsonProperty
  @JsonConverter(MyCustomCalendarConverter.class)
  public Calendar createdOn;

  @JsonProperty
  public String name;
}

看来我可以自定义反序列化整个实体。我只是好奇是否有一种方法可以一次只自定义一个字段的反序列化,以便例如自定义解析特定的日期格式,或者将值数组读入自定义实体等,同时让杰克逊通常反序列化实体的其余部分。

Given a simple entity class like this

public class User
{
  @JsonProperty
  public Calendar createdOn;

  @JsonProperty
  public String name;
}

Is there a way for me to hook into the jackson streaming API to custom deserialize ONLY the createdOn field? If there's not, then would something like this be possible in the future?

public class User
{
  @JsonProperty
  @JsonConverter(MyCustomCalendarConverter.class)
  public Calendar createdOn;

  @JsonProperty
  public String name;
}

It appears that I could custom deserialize the entire entity. I'm just curious if there is a way to customize the deserialization just a field at a time in order to, for example, custom parse a particular date format, or read an array of values into a custom entity, etc. while letting Jackson deserialize the rest of the entity normally.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那一片橙海, 2024-10-28 13:10:19

您可以使用 @JsonSerialize 定义自定义序列化特定字段:

@JsonSerialize(using=MuCustomCalendarConverter.class)

You can define custom serialize a specific field using @JsonSerialize:

@JsonSerialize(using=MuCustomCalendarConverter.class)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文