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

I have a jaxb object which can be marshalled successfully, and it has a list object, then I make a new object like below

public class Sub extends SuperJAXBClass{

@Override
public List getList1(){
//override here
return ...;
}
}

Then the code like below: SuperJAXBClass sjc=new Sub(); marshall(sjc)

Then I found the List1 in Sub is not marshalled successfully. Any one knows why this happens? How to solve it?

share|improve this question
How are you creating your JAXBConext? The following may help: blog.bdoughan.com/search/label/Inheritance – Blaise Doughan Feb 9 '12 at 23:04
JAXBContext.newInstance(SuperJAXBClass.class); – user999377 Feb 10 '12 at 15:10

1 Answer

You could do one of the following:

Option #1 - @XmlSeeAlso Annotation

JAXB (JSR-222) implementations can not use Java reflection to determine all the possible suclasses. As a work around you can annotate the super class with the @XmlSeeAlso annotation that provides JAXB a reference to the subclasses.

@XmlSeeAlso({Sub.class})
public class SuperJAXBClass {
}

Option #2 - Pass the Subclass When Creating JAXBContext

If you include the subclass when creating the JAXBContext then JAXB implementations will be aware of it. When a subclass is passed in metadata for the super classes is also created.

JAXBContext.newInstance(Sub.class);
share|improve this answer
After debug, I found the sub class has a getList1 method whil it has a hidden getList1 method, which i think it's super class' method. and may be that's why each time when JAXB marshall the sub class, the hidden getList1 method returned is empty, so it can't be marshalled. – user999377 Feb 24 '12 at 19:33

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.