In Jersey, when using Jackson for JSON serialization, the extra attributes of an implementing subclass are not included. For example, given the following class structure
@JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.PROPERTY, property="@class")
@JsonSubTypes({
@JsonSubTypes.Type(value = Foo.class, name = "foo")
}
public abstract class FooBase {
private String bar;
public String getBar() {
return bar;
}
public void setBar( String bar ) {
this.bar = bar;
}
}
public class Foo extends FooBase {
private String biz;
public String getBiz() {
return biz;
}
public void setBiz( String biz ) {
this.biz = biz;
}
}
And the following Jersey code
@GET
public FooBase get() {
return new Foo();
}
I get back the following json
{"@class" => "foo", "bar" => null}
But what I actually want is
{"@class" => "foo", "bar" => null, "biz" => null}
Also, in my web.xml I have enabled POJOMappingFeature to solve this issue
<init-param>
<param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
<param-value>true</param-value>
</init-param>
Edit: Fixed the Java code to have the setters set properly and Foo to not be abstract