最近我遇到了一个似乎很常见的问题:如何用属性和简单的文本内容来表示XML元素,如下所示:
<elem attr="aval">elemval</elem>
使用JAXB。
我发现了很多关于如何做到这一点的建议,但这些建议中的每一个都涉及手动编辑绑定类。
我有一组模式,我使用XJC将这些模式转换为Java类。但是,它似乎产生错误的代码,即它不生成设置普通内容的方法,只有设置属性的方法。
是否可以修复XJC的这种行为?广泛的谷歌搜索对这个问题没有帮助。
答案 0 :(得分:6)
下面是一个XML模式,它为您的用例定义了XML结构。
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/schema"
xmlns:tns="http://www.example.org/schema" elementFormDefault="qualified">
<element name="elem">
<complexType>
<simpleContent>
<extension base="string">
<attribute name="attr" type="string" />
</extension>
</simpleContent>
</complexType>
</element>
</schema>
从此XML架构生成JAXB模型将生成以下类:
package forum12859885;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
@XmlRootElement(name = "elem")
public class Elem {
@XmlValue
protected String value;
@XmlAttribute(name = "attr")
protected String attr;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getAttr() {
return attr;
}
public void setAttr(String value) {
this.attr = value;
}
}