最近我遇到了一个似乎很常见的问题:如何用属性和简单的文本内容来表示一个 XML 元素,像这样:
<elem attr="aval">elemval</elem>
使用 JAXB。
我已经找到了很多关于如何做到这一点的建议,但是这些建议中的每一个都涉及手动编辑绑定类。
我有一组模式,我使用 XJC 将这些模式转换为 Java 类。但是,它似乎产生了错误的代码,即它没有生成设置纯内容的方法,只有设置属性的方法。
是否可以修复 XJC 的这种行为?广泛的谷歌搜索对这个问题没有帮助。
下面是一个 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;
}
}