1

私はjavax.xml.bind.annotationを使用しており、属性「xmlns:language」を取得する必要があります(以下のxmlを参照)

    <type xmlns:language="ru" xmlns:type="string">Some text</type>

どの注釈を使用すればよいですか?

@XmlRootElement(name = "type")
@XmlAccessorType(XmlAccessType.FIELD)
public class Type {
    @XmlValue
    protected String value;

    @XmlAttribute
    protected String language;
}
4

1 に答える 1