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

I'm switching from Castor to JAXB2 to perform marshaling/unmarshaling between XML and Java object. I'm having problem trying to configure a collection of polymorphic objects.

Sample XML

<project name="test project">
    <orange name="fruit orange" orangeKey="100" />
    <apple name="fruit apple" appleKey="200" />
    <orange name="fruit orange again" orangeKey="500" />
</project>

Project class

The oranges list works fine, I'm seeing 2 oranges in the list. But, I'm not sure how to configure fruitList. The fruitList should have 3 fruit: 2 oranges and 1 apple.

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Project {

    @XmlAttribute
    private String          name;

    @XmlElement(name = "orange")
    private List<Orange>    oranges     = new ArrayList<Orange>();

    // Not sure how to configure this... help!
    private List<Fruit>     fruitList   = new ArrayList<Fruit>();
}

Fruit class

Fruit is an abstract class. For some reason, defining this class as an abstract seems to be causing a lot of problems.

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public abstract class Fruit {

    @XmlAttribute
    private String  name;
}

Orange class

public class Orange extends Fruit {

    @XmlAttribute
    private String  orangeKey;
}

Apple class

public class Apple extends Fruit {

    @XmlAttribute
    private String  appleKey;
}

How do I configure my fruitList in Project to achieve what I want here?

Thanks much!

share|improve this question

3 Answers

up vote 2 down vote accepted

You want to leverage @XmlElementRef this is corresponds to the XML schema concept of substitution groups which corresponds to your question.

Step 1 - Using @XmlElementRef

The fruitList property is annotated with @XmlElementRef:

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Project {

    @XmlAttribute
    private String name;

    @XmlElementRef
    private List<Fruit> fruitList = new ArrayList<Fruit>();

}

Step 2 - Annotate Apple and Orange with @XmlRootElement

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Apple extends Fruit {

    @XmlAttribute
    private String  appleKey;

}

and

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Orange extends Fruit {

    @XmlAttribute
    private String  orangeKey;

}

Demo Code

The following code can be used to demonstrate the solution:

import java.io.File;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Project.class, Apple.class, Orange.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        Project project = (Project) unmarshaller.unmarshal(new File("input.xml"));

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(project, System.out);
    }

}

For More Information:

share|improve this answer
I'm trying out your approach... I annotated the fruitList property with @XmlElementRef and annotated Orange and Apple classes with @XmlRootElement. I ran the code, and the fruitList came out empty. What am I doing wrong here? Thanks. – limc Feb 3 '11 at 16:53
I figured out the problem, I have to add Orange.class and Apple.class into JAXBContext.newInstance(..) together with Project. Works now. Thanks. – limc Feb 3 '11 at 16:58

After futzing around... I think I got it working now:-

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Project {

    @XmlAttribute
    private String      name;

    // this has to be commented out, or else oranges won't show up in fruitList
    // @XmlElement(name = "orange")
    // private List<Orange> oranges = new ArrayList<Orange>();

    @XmlElements({
            @XmlElement(name = "orange", type = Orange.class),
            @XmlElement(name = "apple", type = Apple.class)
    })
    private List<Fruit> fruitList   = new ArrayList<Fruit>();

}
share|improve this answer
@XmlElements will work, but each time you add a new subclass you will have to edit the Project class. If you use @XmlElementRef instead you will just need to annotate the new subclass with @XmlRootElement. @XmlElements is more for representing choice structures: bdoughan.blogspot.com/2010/10/… – Blaise Doughan Feb 3 '11 at 16:34

Put XmlAnyElement annotation:

@XmlAnyElement(lax = true)
private List<Fruit>     fruitList   = new ArrayList<Fruit>();
share|improve this answer
That didn't work... fruitList contains one apple of type ElementNSImpl. – limc Feb 3 '11 at 16:08
For @XmlAnyElement you would need to add @XmlRootElement to each of the subclasses. This is meant more for wild card sections though. Since the child objects are in an inheritance relationship @XmlElementRef is a better choice here. For more info on @XmlAnyElement see:bdoughan.blogspot.com/2010/08/… – Blaise Doughan Feb 3 '11 at 16:19

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.