开发者

jaxb: How can I bind nested element

There is my xml:

<parent>
   <children>
      <child>1</child>
      <child>开发者_运维技巧2</child>
   </children>
</parent>

I want to have the following Parent class:

@XmlRootElement
Parent{
   @XmlElement(name="children/child") 
   List<Child> children;
}

I don't want to have class for element 'children'. How should I map field children ?


Use @XmlElementWrapper:

@XmlRootElement
public class Parent {
   @XmlElementWrapper(name="children")
   @XmlElement(name="child") 
   List<Child> children;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜