It seems the latest JAX-RS can handle methods returning java.util.List as the XMLRootElement but normal JAXB cannot. I would like to mimic what CXF and Jersey are doing.

In other words I would like to Marshal a List and just like CXF and Jersey do. Normally if you try to marshal a list with JAXB you get the Root Element exception. How do I get around this with out having to make a wrapping object?

EDIT: Thanks for the many answers but I'm very familiar with the @XmlElementWrapper but that does not even come close to simulating what JAX-RS is doing.

JAX-RS does this:

@XmlRootElement(name="dog")
public class Dog {
    private String name;
    public String getName() { return this.name; }
    //Setter also
}

Now if I serialize a list of dogs:

serialize(List<Dog> dogs);

XML should be (what JAX-RS does):

<dogs>
    <dog><name>Rascal</name></dog>
</dogs>

So you can see I don't want to have to make a wrapper object for every single domain object.

link|improve this question

67% accept rate
1  
I think this might be the answer jaxb.dev.java.net/guide/… – Adam Gent May 13 '10 at 15:11
Looks like I could use the code in: org.apache.cxf.jaxrs.provider.AbstractJAXBProvider – Adam Gent May 13 '10 at 15:46
I meant JAXBElementProvider – Adam Gent May 13 '10 at 15:55
2  
Unfortunately, the JAX-RS version is also not without its problems, see e.g. this one: stackoverflow.com/questions/6192389/… – Arjan Tijms May 31 '11 at 22:11
I have seen issues trying to pass a list back through Jersey, so I am not convinced that Rest has solved this issue. – haskovec Apr 26 at 16:47
show 1 more comment
feedback

5 Answers

I have a secret which allows me to avoid screwing with JAXB mappings entirely and have everything work magically.

Have used this approach for years, never spent even 5 minutes worrying about marshalling/unmarshalling. The secret is.... don't use JAXB. :)

In most of my projects which use JAX-RS, I configure Jersey to use xstream and let xstream figure out how to marshal/unmarshal for me. (or jackson for JSON)

Maybe there are some reasons to use JAXB instead of something like xstream/jackson, but I haven't found any yet.

link|improve this answer
Lately I just rely on Jackson JSON and just forget XML altogether. – Adam Gent May 3 at 2:18
feedback

Could you not simply add:

@XmlElementWrapper(name = "wrapperName")

No need to make a wrapper object. This will then be the route element in your marshalled XML response.

link|improve this answer
feedback

I used a custom iterable list using the following code, hope this helps.

package bindings;

import java.io.Serializable;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlType
@XmlRootElement
public class CustomBindList<V> implements Iterable<V>, Serializable {
        private static final long serialVersionUID = 4449835205581297830L;

        @XmlElementWrapper(name = "List")
        @XmlElement(name = "Entry")
    private final List<V> list = new LinkedList<V>();

    public CustomBindList() {
    }

    public void add(final V obj) {
            list.add(obj);
    }

    public V get(final int index) {
        return list.get(index);
    }

    @Override
    public Iterator<V> iterator() {
        return list.iterator();
    }

    public int size() {
        return list.size();
    }
}
link|improve this answer
feedback

mapping a List can be done like this..

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType
public class TestRootObject {

  @XmlElement(name = "testList") 
  private List<TestObj> testList;

  //getter setter
}
link|improve this answer
feedback

check Jackson out, it is very compatible with JAXB bindings and using MappingJsonFactory you can actually interchangeably use Java to XML to Java to Json to Java.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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