其他分享
首页 > 其他分享> > @JsonIgnore注解

@JsonIgnore注解

作者:互联网

注解名称:@JsonIgnore
作用:在实体类向前台返回数据时用来忽略不想传递给前台的属性或接口。
Eg:Bean实体中会有某些运维字段,在返回信息给前台的时候,当不希望将对应值也一并返回;
  此时可以在对应属性上加上注解JsonIgnore或者,可以在User类上加上注解@JsonIgnoreProperties(value = "{password}")

标签:返回,JsonIgnore,前台,注解,对应,属性
来源: https://www.cnblogs.com/xinruyi/p/13635940.html