@XmlElements({
     @XmlElement(name = "house", type = House.class),
     @XmlElement(name = "error", type = Error.class),
     @XmlElement(name = "message", type = Message.class),
     @XmlElement(name = "animal", type = Animal.class)
 })
protected List<RootObject> root;

其中RootObject是House,Error,Message,Animal的超类
root.add(new Animal());
root.add(new Message());
root.add(new Animal());
root.add(new House());
//Prints to xml
<animal/>
<message/>
<animal/>
<house/>

但需要按顺序在@XmlElements({})中声明
<house/>
<message/>
<animal/>
<animal/>

最佳答案

@XmlElements是什么
@XmlElements对应于XML Schema中的choice结构。一个属性对应于多个元素(请参阅:http://blog.bdoughan.com/2010/10/jaxb-and-xsd-choice-xmlelements.html)

托收单

JAXB实现将兑现将项目添加到List的顺序。这与您看到的行为相匹配。

获取所需的订单

  • 您可以按照希望它们显示在XML文档中的顺序将它们添加到List中。
  • 您可以具有与每个元素相对应的单独属性,然后在propOrder上使用@XmlType对输出进行排序(请参阅:http://blog.bdoughan.com/2012/02/jaxbs-xmltype-and-proporder.html)
  • 对JAXB List事件的beforeMarshal属性进行排序。
  • 07-26 04:49