杰克逊:如何防止现场序列化 [英] Jackson: how to prevent field serialization

查看:125
本文介绍了杰克逊:如何防止现场序列化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带密码字段的实体类:

I have an entity class with a password field:

class User {
    private String password;

    //setter, getter..
}

I希望在序列化期间跳过此字段。但它应该仍然能够反序列化。这是必需的,以便客户端可以向我发送新密码,但无法读取当前密码。

I want this field to be skipped during serialization. But it should still be able to DEserialize. This is needed, so that the client can send me a new password, but is not able to read the current one.

如何使用Jackson完成此操作?

How do I accomplish this with Jackson?

推荐答案

您可以将其标记为 @JsonIgnore

使用1.9,你可以为getter添加 @JsonIgnore ,为setter添加 @JsonProperty ,使其反序列化但不序列化。

With 1.9, you can add @JsonIgnore for getter, @JsonProperty for setter, to make it deserialize but not serialize.

这篇关于杰克逊:如何防止现场序列化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆