Is there any way I can tell Jackson to ignore properties from parent class while serializing a child class?
class Parent{ private String parentProperty1; private String parentProperty2; //getter setter } @IgnoreParentProperties // I am expecting something like this class Child extends Parent{ private String childProperty1; //getter setter }