@JsonIgnore注解
Posted tanjiyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@JsonIgnore注解相关的知识,希望对你有一定的参考价值。
注解名称:@JsonIgnore
作用:在实体类向前台返回数据时用来忽略不想传递给前台的属性或接口。
Eg:User实体中会有字段password字段,当返回用户信息给前台的时候,当然是不希望将password值也一并返回。所以,这个时候可以在password属性上加上注解JsonIgnore或者,可以在User类上加上注解@JsonIgnoreProperties(value = "password")
以上是关于@JsonIgnore注解的主要内容,如果未能解决你的问题,请参考以下文章
JSON注解注解@JsonIgnoreProperties和@JsonIgnore的另一个使用情况
页面输出格式常用注解----@JsonIgnore,@JsonFormat,@JsonFormat
SpringBoot @JsonIgnoreProperties、@JsonIgnore、@JsonFormat注解的简单使用