5

我有许多由 JAXB 的 xsd2java 生成的类。我需要在编译时使用特定注释对所有这些类进行注释(例如使用 lombok 注释)。有没有办法做到这一点,例如使用一些代码生成工具?

4

1 回答 1

7

免责声明:我是JAXB2 Annotate Plugin的作者,它允许您向模式派生类添加任意注释。

简短的例子:

<xsd:complexType name="FooType">
    <xsd:annotation>
        <xsd:appinfo>
            <annox:annotate>@java.lang.SuppressWarnings({"unchecked","rawtypes"})</annox:annotate>
            <annox:annotate target="package">@javax.annotation.Generated({"XJC","JAXB2 Annotate Plugin"})</annox:annotate>
        </xsd:appinfo>
    </xsd:annotation>
    <xsd:sequence>
        <xsd:element name="bar" type="xsd:string"/>
        <xsd:element name="foobar" type="xsd:string">
            <xsd:annotation>
                <xsd:appinfo>
                    <annox:annotate>@java.lang.SuppressWarnings({"unchecked","rawtypes"})</annox:annotate>
                    <annox:annotate target="setter">@java.lang.Deprecated</annox:annotate>
                    <annox:annotate target="setter-parameter">@java.lang.Deprecated</annox:annotate>
                    <annox:annotate target="getter">@java.lang.Deprecated</annox:annotate>
                    <annox:annotate target="field">@java.lang.Deprecated</annox:annotate>
                    <annox:annotate target="class">@java.lang.Deprecated</annox:annotate>
                </xsd:appinfo>
            </xsd:annotation>
        </xsd:element>
    </xsd:sequence>
</xsd:complexType>

也适用于外部绑定文件。

限制:

  • 注释以 Java 语法提供,但您必须使用完全限定名称。
  • 您必须在 XJC 类路径中包含注释类(例如 lombok),因为这些类必须在模式编译期间可用。

附言。我假设当你说xsd2java你可能是指XJC

更新

OP 在评论中询问了如何使用对其进行配置。

您也可以jaxb2-annotate-plugin一起使用。我只是从未尝试过。

  • 您可以使用 in 将其他 JAR 包含到类路径dependencies/depenencypom.xml
  • 然后你需要添加arguments到配置中。

有关示例,请参见此答案(和问题):

https://stackoverflow.com/a/12804497/303810

它是关于其他插件的,但您将了解如何使用 Codehaus 对其进行配置。

使用我的进行配置如下:

<plugin>
    <groupId>org.jvnet.jaxb2.maven2</groupId>
    <artifactId>maven-jaxb2-plugin</artifactId>
    <configuration>
        <extension>true</extension>
        <args>
            <arg>-Xannotate</arg>
        </args>
        <plugins>
            <plugin>
                <groupId>org.jvnet.jaxb2_commons</groupId>
                <artifactId>jaxb2-basics-annotate</artifactId>
            </plugin>
            <plugin>
                <groupId>org.jvnet.jaxb2_commons</groupId>
                <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
            </plugin>
        </plugins>
    </configuration>
</plugin>

这部分:

<plugin>
    <groupId>org.jvnet.jaxb2_commons</groupId>
    <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
</plugin>

指的是包含注释类的工件。

这是pom.xmlmaven / 组合的示例。

于 2014-11-07T09:06:23.313 回答