我试图找出是否可以将xml元素解组为多个pojos。例如:
for xml:
<type>
<id>1</id>
<cost>12</cost>
<height>15</height>
<width>13</width>
<depth>77</depth>
</type>
项目类
@XmlAccessorType(XmlAccessType.PROPERTY)
@XmlRootElement(name="type")
public class Item {
private Integer id;
private Double cost;
@XmlElement(name="id")
public Integer getId(){
return id;
}
@XmlElement(name="cost")
public Double getCost(){
return cost
}
}
ItemDimensions类
@XmlAccessorType(XmlAccessType.PROPERTY)
@XmlRootElement(name="type")
public class ItemDimensions {
private Integer height;
private Integer width;
private Integer depth;
@XmlElement(name="height")
public Integer getHeight(){
return height;
}
@XmlElement(name="width")
public Integer getWidth(){
return width;
}
@XmlElement(name="depth")
public Integer getDepth(){
return depth;
}
}
我尝试使用Netbeans 6.9和许多测试类生成的大量JAXB映射来完成类似的操作,但现在已经得到了。有没有人知道这是否可以在没有任何中间对象的情况下完成?
答案 0 :(得分:2)
您可以使用EclipseLink JAXB (MOXy)中的@XmlPath扩展来完成此用例(我是MOXy技术主管):
<强>根强>
JAXB需要单个对象来解组,我们将引入一个类来实现这个角色。此类将包含与您希望使用自我XPath注释的两个对象相对应的字段:@XmlPath(“。”)
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement(name="type")
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {
@XmlPath(".")
private Item item;
@XmlPath(".")
private ItemDimensions itemDimensions;
}
<强> ItemDimensions 强>
您通常会注释此课程。在您的示例中,您可以注释属性,但仅提供getter。这将导致JAXB认为那些是只写映射。
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
public class ItemDimensions {
private Integer height;
private Integer width;
private Integer depth;
}
<强>物品强>
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
public class Item {
private Integer id;
private Double cost;
}
<强>演示强>
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(Root.class);
Unmarshaller u = jc.createUnmarshaller();
Object o = u.unmarshal(new File("input.xml"));
Marshaller m = jc.createMarshaller();
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
m.marshal(o, System.out);
}
}
<强> jaxb.properties 强>
要将MOXy用作JAXB实现,必须使用以下条目为域对象提供名为jaxb.properties的文件:
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory