I have a User class that I want to map to JSON using Jackson.
public class User { private String name; private int age; prviate int securityCode;
you also can gather all properties on an annotation class
@JsonIgnoreProperties( { "applications" }) public MyClass ... String applications;