I have an entity class with a password field:
class User {
private String password;
//setter, getter..
}
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.
How do I accomplish this with Jackson?
@JsonIgnoreon getter, but@JsonPropertyon setter, in which case things is not serialized, but can be deserialized. – StaxMan Feb 3 '12 at 18:24