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

Hi can someone please explain how to solve following problem. i have class structure like this..

 public class RequestWrapper implements Seriallizable
 {
    private List<Request> requests = null;
    @XmlElementRefs( { @XmlElementRef(type = Class1.class), @XmlElementRef(type = Class2.class), .. And so on } )
    public List<Request> getRequests()
    {
        return requests;
    }
 }

This Request class is an Abstract class. Many Classes in the project extending this Request class. For this reason i can't add code by declaring many @XmlElementRef annotations.

Is there any way this @XmlElementRefs tag can lookup entire class path instead of looking only declared @XmlElementRef.

Kindly reply to this post quickly...

share|improve this question

1 Answer

Making the JAXBContext Aware of the Subclasses

A JAXB (JSR-222) implementation cannot determine subclasses of a mapped type by reflection or scanning the classpath. You will need to explicitly tell JAXB to include them. This can be done in one of the following ways.

Option #1 - @XmlSeeAlso Annotation

The @XmlSeeAlso annotation is a mechanism you can leverage in a mapped class to have other classes included. This is typically leveraged to pull in any subclasses that JAXB should treat as mapped classes.

@XmlSeeAlso({Class1.class, Class2.class})
public class Request {
}

Option #2 - Include them When Creating JAXBContext

JAXBContext jc = JAXBContext.newInstance(Class1.class, Class2.class);

Applying @XmlElementRef

As long as your JAXBContext is aware of all the subclases of Request then you can simplify your mapping down to the following:

@XmlElementRef
public List<Request> getRequests()
{
    return requests;
}

For More Information

share|improve this answer
1  
Thanks a lot Blaise for your quick response. – Kiran T Sep 26 '12 at 10:43
Is there any JAXB version that aware of the Subclasses ??? – Kiran T Sep 26 '12 at 11:38
@KiranT - There is no versions of JAXB (JSR-222) that will auto detect subclasses of a mapped class. You could potentially implement some code that takes the classes you wish to bootstrap the JAXBContext on and then expand it to include all subclasses using some mechanism and then use the expanded array of classes to build the JAXBContext. – Blaise Doughan Sep 26 '12 at 12:13
Thanks a lot Blaise.. Useful information. Actually i too thinking to pass custom class loader to JAXBContect.. – Kiran T Sep 27 '12 at 11:57

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.