Want to Add @JsonIgnore property on Password in response Json

后端 未结 4 1021
有刺的猬
有刺的猬 2021-02-13 15:33

I want to add @JsonIgnore of Jackson On the Password property of User domain such that I must be able to send the Json With password and It saves my data in Database but in resp

4条回答
  •  时光说笑
    2021-02-13 16:14

    In my case it helped to do it like that:

    @JsonProperty
    private String password;
    
    @JsonIgnore
    public String getPassword() {
        return password;
    }
    
    public void setPassword(String password) {
        this.password = password;
    }
    

提交回复
热议问题