In my entity class, I\'m trying to make a write-only field (gets ignored during serialization, but gets de-serialized normally).
@JsonProperty @JsonSerialize
You can set access value:
access
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY) private String password;