【发布时间】:2015-10-15 22:01:24
【问题描述】:
我有以下问题:我有一些代码(我无法更改),其中父类的一个变量被子类的变量遮蔽。当注释为 @XmlAttribute 并使用 JAXB 编组时,这会导致非法 XML,而在解组时会导致异常(由于非法 XML)。这是一个显示问题的最小示例:
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
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.helpers.DefaultValidationEventHandler;
import org.junit.Test;
public class InheritanceJaxbTest {
@Test
public void testInheritanceField() {
B b = new B("value");
String xml = toXML(b);
System.out.println(xml);
B b_out = fromXML(xml);
System.out.println(b_out.myField);
}
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
private static class A {
public A() {
}
public A(String myField) {
this.myField = myField;
}
@XmlAttribute
private String myField;
}
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
private static class B extends A {
public B() {
super();
}
public B(String myField) {
super(myField);
this.myField = myField;
}
@XmlAttribute
private String myField;
}
public <T> T fromXML(String xml) {
try {
JAXBContext jc = JAXBContext.newInstance(A.class, B.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
unmarshaller.setEventHandler(new DefaultValidationEventHandler());
return (T) unmarshaller.unmarshal(new ByteArrayInputStream(xml.getBytes()));
} catch (Exception exc) {
throw new RuntimeException(exc);
}
}
public String toXML(Object obj) {
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PrintStream ps = new PrintStream(baos);
JAXBContext jc = JAXBContext.newInstance(A.class, B.class);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
marshaller.setEventHandler(new DefaultValidationEventHandler());
marshaller.marshal(obj, ps);
return baos.toString();
} catch (Exception exc) {
throw new RuntimeException(exc);
}
}
}
这会产生以下(显然是非法的)XML:
<b myField="value" myField="value"/>
而后续的解组操作抛出如下异常:
java.lang.RuntimeException: javax.xml.bind.UnmarshalException
- with linked exception:
[org.xml.sax.SAXParseException: Attribute "myField" was already specified for element "b".]
at InheritanceJaxbTest.fromXML(InheritanceJaxbTest.java:67)
由于我基本上无法更改底层 Java 类,我想用某种 XmlAdapter 或自定义 XmlStreamWriter 或类似的东西来解决这个问题。有关如何进行的任何建议?
This question 是相关的,但仍然没有提供如何在不更改 Java 类的情况下继续进行的见解。
【问题讨论】: