摘要: @JsonIgnore在对应的字段上添加这个注解在get方法上面添加,如果是 lombok.Data,直接在属性上面添加 @Data public class test { /** * 字段 */ @JsonIgnore private String testColmun; } 阅读全文