我试图让 docx4j 支持 MOXy 作为其 JAXB 实现。
我们已经差不多了;见docx4j 和 MOXy
我遇到的问题是我有一堂课:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", name = "CT_Text", propOrder = {
"value"
})
@XmlRootElement(name = "t")
public class Text
MOXy 将其编组为 w:delInstrText,而不是 w:t,这是我所期望/希望的,也是 Java 6/参考实现所做的。
从架构:
<xsd:element name="t" type="CT_Text">
<xsd:annotation>
<xsd:documentation>Text</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="delInstrText" type="CT_Text">
<xsd:annotation>
<xsd:documentation>Deleted Field Code</xsd:documentation>
</xsd:annotation>
</xsd:element>
FWIW,ObjectFactory 包含:
public Text createText() {
return new Text();
}
@XmlElementDecl(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", name = "delInstrText", scope = R.class)
public JAXBElement<Text> createRDelInstrText(Text value) {
return new JAXBElement<Text>(_RDelInstrText_QNAME, Text.class, R.class, value);
}
这是使用 MOXy 罐子:
+- org.eclipse.persistence:org.eclipse.persistence.moxy:jar:2.4.1
| +- org.eclipse.persistence:org.eclipse.persistence.core:jar:2.4.1
| | \- org.eclipse.persistence:org.eclipse.persistence.asm:jar:3.3.1.v201206041142
| \- org.eclipse.persistence:org.eclipse.persistence.antlr:jar:3.2.0.v201206041011
更新:
这是一个测试用例:
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.Marshaller;
import org.docx4j.wml.R;
import org.docx4j.wml.Text;
public class MOXyTest {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance("org.docx4j.wml");
// System.out.println(Version.getVersion());
// System.out.println(jc.getClass());
R run = new R();
Text text = new Text();
run.getContent().add(text);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(run, System.out);
}
}