我使用JAXB来序列化java对象,我想要以下XML输出:
<attribute>
<type>
<listType>
<itemType>
<simpleType>
<dataLength>80</dataLength>
<dataType>string</dataType>
<decimalPlaces>0</decimalPlaces>
</simpleType>
</itemType>
</listType>
</type>
</attribute>
我的java类看起来像这样:
Attribute.java
@XmlRootElement
public class Attribute
{
private Type type;
public Type getType()
{
return this.type;
}
public void setType(Type type)
{
this.type = type;
}
}
Type.java
public abstract class Type
{
}
SimpleType.java
public class SimpleType extends Type
{
private int dataLength;
private int decimalPlaces;
private String dataType;
// getters and setters...
}
ListType.java
public class ListType extends Type
{
private Type itemType;
// getters and setters...
}
ComplexType.java
public class ComplexType extends Type
{
private List<Attribute> attributes = new ArrayList<>();
// getters and setters...
}
没有任何额外的注释,JAXB就会产生这样的注释:
<attribute>
<type xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="listType">
<itemType xsi:type="simpleType">
<dataLength>80</dataLength>
<dataType>string</dataType>
<decimalPlaces>0</decimalPlaces>
</itemType>
</type>
</attribute>
我不希望类型信息表示为XML属性(xsi:type),而是希望有一个额外的XML元素,如顶部的XML代码所示。我认为这是一个典型的用例,但我没有找到任何东西。我有哪些可能性?
答案 0 :(得分:0)
如果类结构反映XML结构,则不应该有问题。否则,JAXB需要xsi:type来区分属性对象中的多态类型字段 - 它还能如何重建POJO?
public class Type {
private ListType listType;
}
public class ListType {
private ItemType itemType;
}
public class ItemType {
private SimpleType simpleType;
}