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

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

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

猜你喜欢

转载自www.cnblogs.com/chenziyue/p/12613044.html