【问题标题】:Illegal XML/exception un/marshalling shadow variable in JAXBJAXB 中的非法 XML/异常 un/marshalling shadow 变量
【发布时间】: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 类的情况下继续进行的见解。

【问题讨论】:

    标签: java xml jaxb


    【解决方案1】:

    我会写一个自定义的annotation reader 来解决这个问题。注释阅读器基本上是读取类注释的东西。所以你可以实现你自己的阅读器来处理你想要的阴影字段。

    public interface AnnotationReader<T,C,F,M> {
    
    // ...
    
        /**
         * Reads an annotation on a property that consists of a field.
         */
        <A extends Annotation> A getFieldAnnotation(Class<A> annotation,
                                                    F field, Locatable srcpos);
    
        /**
         * Checks if the given field has an annotation.
         */
        boolean hasFieldAnnotation(Class<? extends Annotation> annotationType, F field);
    
    // ...
    
        /**
         * Gets all the annotations on a field.
         */
        Annotation[] getAllFieldAnnotations(F field, Locatable srcPos);
    
    // ...
    
    }
    

    然后您可以在创建 JAXB 上下文时使用您的阅读器:

    final AnnotationReader<Type, Class, Field, Method> annotationReader = new MyCustomAnnotationReader();
    
    final Map<String, Object> properties = new HashMap<String, Object>();
    
    properties.put(JAXBRIContext.ANNOTATION_READER, annotationReader);
    

    或者考虑使用MOXy XML bindings 代替注释。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-03-10
      • 2020-10-21
      • 1970-01-01
      • 2011-11-28
      相关资源
      最近更新 更多