kdlug
11/22/2019 - 9:01 AM

Ignore json field from response


Field Level:

public class User {
    private String name;
    private int age;
    @JsonIgnore
    private int securityCode;

    // getters and setters
}
Class Level:

@JsonIgnoreProperties(value = { "securityCode" })
public class User {
    private String name;
    private int age;
    private int securityCode;
}
shareimprove this answer