SpringBoot 返回JSON格式 不让它显示某个字段信息

在不需要显示的字段上添加@JsonIgnore 注解即可

 

@ToString
@Data
public class User implements Serializable {
    private Integer id;
    private String loginId;
    @JsonIgnore
    private String password;
    private Integer disable;
}

 

posted @ 2020-04-01 15:42  辰梓悦  阅读(3393)  评论(0编辑  收藏  举报