Want to Add @JsonIgnore property on Password in response Json

后端 未结 4 1038
有刺的猬
有刺的猬 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:32

    You can do it this way too if you don't want to manually create the getters/setters (eg. when using lombok's @Data)

    @JsonProperty(access = Access.WRITE_ONLY)
    private String password;
    

提交回复
热议问题