According to the manual I try to create a response of my REST service. I do it so: Spring config:
<bean id="jsonProvider"
class="com.my.rs.WorkAround"/>
My class:
public class WorkAround extends JacksonJsonProvider {
WorkAround() {
ObjectMapper mapper = new ObjectMapper();
AnnotationIntrospector introspector = new JaxbAnnotationIntrospector();
mapper.setAnnotationIntrospector(introspector);
super.setMapper(mapper);
}
}
And POJO:
@XmlRootElement(name = "Foo")
@XmlType(name = "Foo" )
@XmlAccessorType(XmlAccessType.FIELD)
public class Foo implements Serializable {
private String barOne;
private String barTwo;
private String barThree;
Try a request. Request is POST, where body is:
{"Foo":{"barOne":"111","barTwo":"222","barThree":"333"}}
And get an error:
WebApplicationException has been caught : Unrecognized field "Foo" (Class com.my.rs.impl.common.Foo), not marked as ignorable
What did I wrong?