无法将类型编组为元素,因为它缺少自动生成的类的@XmlRootElement注释
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法将类型编组为元素,因为它缺少自动生成的类的@XmlRootElement注释相关的知识,希望对你有一定的参考价值。
我需要针对我的模式验证Class对象,在该模式中我提供了正则表达式来验证自动生成的JAXB类的字段。当我尝试验证我的类对象时,我得到以下错误:
无法编组类型“xyz”作为元素,因为它缺少@XmlRootElement注释
这是我用来验证自动生成的类对象的代码:
jc = JAXBContext.newInstance(obj.getClass());
source = new JAXBSource(jc, obj);
Schema schema = schemaInjector.getSchema();
Validator validator = schema.newValidator();
validator.validate(source);
还有其他方法可以解决这个问题吗?
如果你的类没有@XmlRootElement
注释,那么你可以将它包装在JAXBElement
的实例中。如果您从XML Schema生成类,那么生成的ObjectFactory
可能会为您提供方便的方法。
我在博客上写了更多关于这个用例的文章:
我建议你使用maven插件“maven-jaxb2-plugin”从XSD生成类。使用绑定文件*。 xjb添加注释@XmlRootElement。
以下是一些例子
e.g Binding file
<bindings version="2.0" xmlns="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
xmlns:annox="http://annox.dev.java.net">
<globalBindings>
<xjc:serializable uid="12343" />
<xjc:simple/>
</globalBindings>
</bindings>
e.g Maven Plugin
http://confluence.highsource.org/display/MJIIP/User+Guide
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.8.1</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-Xannotate</arg>
<arg>-nv</arg>
</args>
<extension>true</extension>
<forceRegenerate>true</forceRegenerate>
<bindingDirectory>${basedir}/src/main/resources/schema/xjb</bindingDirectory>
<bindingIncludes>
<include>*.xjb</include>
</bindingIncludes>
<schemas>
<schema>
<fileset>
<directory>${basedir}/src/main/resources/schema/</directory>
<includes>
<include>*.xsd</include>
</includes>
</fileset>
</schema>
</schemas>
<debug>true</debug>
<verbose>true</verbose>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>
<version>0.6.2</version>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
<version>0.6.2</version>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-namespace-prefix</artifactId>
<version>1.1</version>
</plugin>
</plugins>
</configuration>
</plugin>
我遇到了同样的问题,因为遗留的wsdl在wsdl定义中没有xsd模式。我解决了这个问题,有两个maven插件从wsdl生成操作以及从xsd文件生成DTD,如下所示,并用于编组new ObjectFactory().createHandShake(new HandShake());
public boolean handShake() {
JAXBElement<HandShake> request = new ObjectFactory().createHandShake(new HandShake());
logger.info(String.format("request: {0}", "handshake request"));
logger.debug("sending request");
HandShakeResponse handShakeResponse = ((JAXBElement<HandShakeResponse>) getWebServiceTemplate()
.marshalSendAndReceive(request, new SoapActionCallback(
"urn:handShake"))).getValue();
logger.debug("receive response");
return handShakeResponse.isReturn();
}
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.14.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaLanguage>WSDL</schemaLanguage>
<generatePackage>${contextPathWSDL}</generatePackage>
<schemas>
<schema>
<url>${merchant.WSDL}</url>
</schema>
</schemas>
</configuration>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.14.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>${basedir}/src/main/resources/xsds</schemaDirectory>
<schemaIncludes>
<include>*.xsd</include>
</schemaIncludes>
<generatePackage>${contextPathXSD}</generatePackage>
<generateDirectory>${basedir}/target/generated-sources/DTD</generateDirectory>
</configuration>
</plugin>
以上是关于无法将类型编组为元素,因为它缺少自动生成的类的@XmlRootElement注释的主要内容,如果未能解决你的问题,请参考以下文章
将对象编组为枚举类型时不调用 JAXB XmlJavaTypeAdapter
无法将float类型隐式转换为int。存在显式转换(您是否缺少演员表?)