@JsonIgnore does not ignore fields I do not want displaying
This is roughly my code. I am trying to have Jackson ignore a field when it takes my POJO and creates JSON out of it: import com.fasterxml.jackson.annotation.JsonIgnore; public class MyPOJO { @JsonIgnore private String socialSecurityNumber = "111-11-1111"; // ... public…