1

使用 MOXy 解组时我没有遇到任何问题。这是我解组的 XML。

<eng><shape type="square"><square-specific>dasdasdas</square-specific></shape></eng>

但是在编组时,我得到了这个:

<eng><shape><type/><square-specific>dasdasdas</square-specific></shape></eng>

这是我的模型文件:

@XmlRootElement(name="eng")
public class Eng {

    private Shape shape;

    public void setShape(Shape shape) {
        this.shape = shape;
    }

    @XmlElement
    public Shape getShape() {
        return shape;
    }
}


@XmlDiscriminatorNode("type")
public abstract class Shape {

}


@XmlDiscriminatorValue("square")
public class Square extends Shape {

    private String squareSpecificAttribute;

    @XmlElement(name="square-specific")
    public String getSquareSpecificAttribute() {
        return squareSpecificAttribute;
    }

    public void setSquareSpecificAttribute(String s) {
        this.squareSpecificAttribute = s;
    }
}

这是我的控制器中的方法:

@GET
@Produces(MediaType.APPLICATION_XML)
public Eng get(){
    Eng e = new Eng();
    Square s = new Square();
    s.setSquareSpecificAttribute("dasdasdas");
    e.setShape(s);

    return e;
}

我想我错过了一些东西,知道可能是什么吗?

谢谢。

4

1 回答 1

1

@XmlDecriminator 节点采用 XPath。要表明该类型是一个属性,您可以执行以下操作:

@XmlDescriminatorNode("@type")

有关示例,请参见:

于 2011-03-07T10:46:57.873 回答