Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
If you are interested in using EclipseLink JAXB (MOXy) as your JSON provider, I can help there: blog.bdoughan.com/2012/05/… – Blaise Doughan Jun 29 '12 at 15:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.