I am declaring a List object property with:

@XmlRootElement(namespace = "...")
@XmlType
public class Test {
    private List<String> myList;

    @XmlElementWrapper(name = "myListWrapper")
    @XmlElement(name = "myList")
    public List<String> getMyList() {
        return myList;
    }
}

When an instance of this class with an empty list myList is marshalled, MOXy is not generating an empty wrapper MyListWrapper. However, JAXB RI would do it. The generated XML looks like this when using the RI:

<ns2:test xmlns:ns2="...">
    <myListWrapper/>
</ns2:intensionalSet>

Is there a way to obtain the same result with MOXy?

link|improve this question

79% accept rate
Did you try with required=true on the wrapper annotation? – forty-two Nov 8 '11 at 16:04
yes, but it does not work :( – Sergio Nov 8 '11 at 16:09
feedback

1 Answer

up vote 1 down vote accepted

Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB 2 (JSR-222) expert group.

This is a bug in the MOXy implementation of JAXB. You can use the following link to track this issue:

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.