30

我有两个代码,在两个不同的 java 项目中,做几乎相同的事情,(根据 xsd 文件解组 web 服务的输入)。

但在一种情况下,我应该这样写:(输入是占位符名称)(元素是 OMElement 输入)

ClassLoader clInput = input.ObjectFactory.class.getClassLoader();
JAXBContext jc = JAXBContext.newInstance("input", clInput);
Unmarshaller unmarshaller = jc.createUnmarshaller();
Input input = (Input)unmarshaller.unmarshal( element.getXMLStreamReader() );

在另一个库中,我必须使用 JAXBElement.getValue(),因为它是一个返回的 JAXBElement,并且一个简单的 (Input) 强制转换只会崩溃:

Input input = (Input)unmarshaller.unmarshal( element.getXMLStreamReader() ).getValue();

你知道是什么导致了这种差异吗?

4

5 回答 5

31

如果根元素唯一对应于一个 Java 类,则将返回该类的实例,如果不是,则JAXBElement返回 a。

如果您想确保始终获得域对象的实例,您可以利用JAXBInstrospector. 下面是一个例子。

演示

package forum10243679;

import java.io.StringReader;
import javax.xml.bind.*;
import javax.xml.transform.stream.StreamSource;

public class Demo {

    private static final String XML = "<root/>";

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Root.class);
        Unmarshaller unmarshaller = jc.createUnmarshaller();
        JAXBIntrospector jaxbIntrospector = jc.createJAXBIntrospector();

        Object object = unmarshaller.unmarshal(new StringReader(XML));
        System.out.println(object.getClass());
        System.out.println(jaxbIntrospector.getValue(object).getClass());

        Object jaxbElement = unmarshaller.unmarshal(new StreamSource(new StringReader(XML)), Root.class);
        System.out.println(jaxbElement.getClass());
        System.out.println(jaxbIntrospector.getValue(jaxbElement).getClass());
    }

}

输出

class forum10243679.Root
class forum10243679.Root
class javax.xml.bind.JAXBElement
class forum10243679.Root
于 2012-04-20T20:42:26.217 回答
4

这取决于根元素的类上是否存在XmlRootElement 注释。

如果从 XSD 生成 JAXB 类,则应用以下规则:

  • 如果根元素的类型是匿名类型 -> XmlRootElement 注解添加到生成的类
  • 如果根元素的类型是顶级类型 -> 从生成的类中省略 XmlRootElement 注释

出于这个原因,我经常为根元素选择匿名类型。

您可以使用自定义文件自定义此匿名类型的类名。例如,像这样创建一个 bindings.xjc 文件:

<jxb:bindings version="1.0"
              xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
              xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <jxb:bindings schemaLocation="yourXsd.xsd" node="/xs:schema">
        <jxb:bindings  node="//xs:element[@name='yourRootElement']">
            <jxb:class name="YourRootElementType"/>
        </jxb:bindings> 
    </jxb:bindings>
</jxb:bindings>
于 2012-04-20T10:01:15.250 回答
1

您需要适当地添加到您的 JAXB 生成的类中@XMLRootElement- 它应该具有命名空间:

@XmlRootElement(namespace="http://your.namespace.com/", name="yourRootElement")

看看相关的问题(有很多好的提示):Class Cast Exception when trying to unmarshall xml?

于 2012-04-20T09:56:45.147 回答
1

感谢您的所有解释和链接,我已经写了这个,以便使用 Annotation Introspection 来处理这两种情况。

这样做的好处是:

  • 不修改生成的 java 类
  • 允许所有可能的 xsd 格式

它适用于输出和输入,在我看来更通用:

public class JaxbWrapper {

    private static boolean isXmlRootElement(Class classT){
        
        Annotation[] annotations = classT.getAnnotations();
        
        for(Annotation annotation : annotations){
            if(annotation instanceof XmlRootElement){
                return true;
            }
        }       
        
        return false;
    }
    
    public static Object unmarshall(Class classObjectFactory, Class classObject, XMLStreamReader xmlStreamReader){
        
        Package pack = classObjectFactory.getPackage();
        String strPackageName = pack.getName();
        
        Object returnObject = null;
        
        try {
            JAXBContext jc = JAXBContext.newInstance(strPackageName, classObjectFactory.getClassLoader());
            
            Unmarshaller unmarshaller = jc.createUnmarshaller();
            
            returnObject = unmarshaller.unmarshal( xmlStreamReader );
            
            boolean bIsRootedElement = isXmlRootElement(classObject);
            if(!bIsRootedElement)
            {
                JAXBElement jaxbElement = (JAXBElement) returnObject;
                returnObject = jaxbElement.getValue();              
            }
        }
        catch (JAXBException e) {
            /*...*/
        }   

        return returnObject;
    }
    
    private static void writeToXml(Class classObjectFactory, Object obj, XMLStreamWriter xmlStreamWriter){
        
        Package pack = classObjectFactory.getPackage();
        String strPackageName = pack.getName();
        
        try {       
            JAXBContext jc = JAXBContext.newInstance(strPackageName, classObjectFactory.getClassLoader());
            Marshaller marshaller = jc.createMarshaller();
            marshaller.marshal(obj, xmlStreamWriter);
        }
        catch(JAXBException e) {
            /*...*/
        }       
    }
    
    public static String marshall(Class classObjectFactory, Class classObject, Object obj){
        
        Object objectToMarshall = obj; 
        
        boolean bIsRootedElement = isXmlRootElement(classObject);
        if(!bIsRootedElement)
        {
            Package pack = classObjectFactory.getPackage();
            String strPackageName = pack.getName();
            
            String strClassName = classObject.getName();
            
            QName qName = new QName(strPackageName, strClassName);
            
            JAXBElement jaxbElement = new JAXBElement(qName, classObject, null, obj);
            
            objectToMarshall = jaxbElement; 
        }
        
        StringWriter sw = new StringWriter();
        XMLOutputFactory xmlOutputFactory = XMLOutputFactory.newInstance();
        XMLStreamWriter xmlStreamWriter = null;
        
        try {
            xmlStreamWriter = xmlOutputFactory.createXMLStreamWriter(sw);
            
            writeToXml(classObjectFactory, objectToMarshall, xmlStreamWriter);

            xmlStreamWriter.flush();
            xmlStreamWriter.close();
        } 
        catch (XMLStreamException e) {
            /*...*/
        }

        return sw.toString();
    }
}
于 2012-04-20T15:45:05.853 回答
0

我也有同样的问题。JAXB unmarshaller.unmarshal 返回 aJAXBElement<MyObject>而不是 desired MyObject

我找到并删除了@XmlElementDecl. 问题已经解决了。

于 2018-02-02T07:39:29.613 回答