·

用 access 属性,WRITE_ONLY 就行了,@JsonIgnore 意思是在序列化和反序列化都忽略。

public class LoginDTO {

    private String email;

    @JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
    private String password; // 明文密码

    @JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
    private String captcha; // 验证码
}
Replies
1

测试