4

我使用 JAXB 绑定我的 xsd,然后尝试创建 JAXBContext:

JAXBContext jaxbContext = JAXBContext.newInstance("my package name");

但是 JAXB 给出 180 IllegalAnnotationsException。

大多数异常都有以下消息:

  1. XXX是接口,JAXB不能处理接口
  2. XXX 没有无参数默认构造函数
  3. @XmlAttribute/@XmlValue 需要引用映射到 XML 中文本的 Java 类型。

当我查看生成的类时,它们都不是接口,我不明白为什么 JAXB 将它们解释为接口。

这是 JAXB 报告的错误之一的堆栈跟踪:

com.sc.md.datatypes.schemas.csemessage.EnvelopeType is an interface, and JAXB can't handle interfaces.
this problem is related to the following location:
    at com.sc.md.datatypes.schemas.csemessage.EnvelopeType
    at protected com.sc.md.datatypes.schemas.csemessage.EnvelopeType com.sc.md.datatypes.schemas.csemessage.cseMessage.envelope
    at com.sc.md.datatypes.schemas.csemessage.cseMessage
com.sc.md.datatypes.schemas.csemessage.EnvelopeType does not have a no-arg default constructor.
this problem is related to the following location:
    at com.sc.md.datatypes.schemas.csemessage.EnvelopeType
    at protected com.sc.md.datatypes.schemas.csemessage.EnvelopeType com.sc.md.datatypes.schemas.csemessage.cseMessage.envelope
    at com.sc.md.datatypes.schemas.csemessage.cseMessage

这就是在 xsd 中定义类型的方式:

<xs:complexType name="EnvelopeType">
    <xs:sequence>
        <xs:element name="Sent" type="DateTimeType"/>
        <xs:element name="Identifier" type="String_1_14"/>
        <xs:element name="AcknowledgementCode" type="AcknowledgementCodeType"/>
    </xs:sequence>

<xs:simpleType name="AcknowledgementCodeType">
    <xs:restriction base="xs:string">
        <xs:enumeration value="m"/>
        <xs:enumeration value="p"/>
    </xs:restriction>
</xs:simpleType>

这是我用来生成绑定的 pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cs</groupId>
<artifactId>cs-jaxb</artifactId>
<packaging>jar</packaging>
<dependencies>
    <dependency>
        <groupId>com.sun.xml.bind</groupId>
        <artifactId>jaxb-impl</artifactId>
        <version>2.2.4-1</version>
    </dependency>
</dependencies>
<name>cs jaxb</name>
<version>1.0.0</version>
<parent>
    <artifactId>hip-jaxb-parent</artifactId>
    <groupId>com.cs</groupId>
    <version>0.0.1-SNAPSHOT</version>
</parent>
<build>
    <defaultGoal>install</defaultGoal>
    <plugins>
        <plugin>

            <groupId>org.jvnet.jaxb2.maven2</groupId>
            <artifactId>maven-jaxb2-plugin</artifactId>
            <version>0.8.0</version>
            <executions>
                <execution>

                    <id>CS</id>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                    <configuration>
                        <schemaDirectory>src/main/resources/</schemaDirectory>
                        <schemaIncludes>
                            <include>**/*.xsd</include>
                        </schemaIncludes>

                    </configuration>
                </execution>

            </executions>
        </plugin>
        <plugin>
            <inherited>true</inherited>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
        </plugin>
    </plugins>
</build>

自从我第一次在网上提问以来,请耐心等待我:)

4

3 回答 3

2

多亏了大家,这对我来说像往常一样是一个大错误,但无论如何我第一次喜欢使用stackoverflow,并且会在这里窥探一下。

问题出在我的类路径上。我指的是一个 xmlbeans 绑定项目,它的 java 源代码与 jaxb 生成的包和类相同,它们作为 jar 包含在我的类路径中。所以我有 2 个具有相同名称和包的类,但令我痛苦的是 JAXB 选择了 Xmlbeans 类,我两天没有意识到这一点。这是 Java 中最古老的错误之一,我为这个错误道歉。如果有人需要任何澄清,请发表评论。

于 2012-07-19T12:27:48.193 回答
0

Have you annotated all root classes with the @XmlRootElement annotation?

See: Unofficial JAXB Guide - Mapping interfaces - Java.net

Second, I would recommend you not to create your JAXBContext via JAXBContext.newInstance("my package name");. It is better to specify the root classes explicitly. Therefore if you have two root classes named ClassA and ClassB use it this way:

JAXBContext.newInstance(new Class[] {ClassA.class, ClassB.class});
于 2012-07-16T12:06:48.850 回答
0

我怀疑您正在尝试将 JAXB 1 ( JSR-31 ) 模型与 JAXB 2 ( JSR-222 ) 运行时一起使用。在 JAXB 1 实现中,生成由实现特定的 impl 类支持的规范定义的接口。在 JAXB 2 中,这成为规范定义的类,具有与所有实现兼容的标准注释。大多数 JAXB 2 实现都支持自己的 JAXB 1 模型,但可能需要一些额外的配置,如果您尝试使用具有不同 JAXB 2 提供程序的 JAXB 1 模型,您可能会看到这种类型的错误。

于 2012-07-17T16:05:39.887 回答