7

我的 POM 文件中有以下配置。特别是 jaxb-fluent-api 配置。

<plugin>
    <groupId>org.jvnet.jaxb2.maven2</groupId>
    <artifactId>maven-jaxb2-plugin</artifactId>
    <configuration>
        <extension>true</extension>
        <args>
            <arg>-Xfluent-api</arg>
        </args>
        <schemaDirectory>src/main/resources</schemaDirectory>
        <plugins>
            <plugin>
                <groupId>net.java.dev.jaxb2-commons</groupId>
                <artifactId>jaxb-fluent-api</artifactId>
                <version>2.1.8</version>
            </plugin>
        </plugins>
    </configuration>
    <executions>
        <execution>
            <goals>
                <goal>generate</goal>
            </goals>
        </execution>
    </executions>
</plugin>

无需配置 jaxb-fluent-api 实体就可以从 xsd 生成。这里使用 jaxb-fluent-api有什么好处?

谢谢!

4

1 回答 1

14

jaxb-fluent-api是一个 JAXB 扩展,允许您以流畅的 api样式生成代码。现在,fluent api是一种设计类方法的方式,因此它们总是返回this而不是void.

项目 wiki上有一个很好的示例(为简洁起见,我将其缩短了一点,请访问该站点以获取完整示例):

正常JAXB生成的代码必须像这样使用:

Project project = factory.createProject();

project.setModelVersion("4.0.0");
project.setGroupId("redmosquito")
project.setArtifactId("jaxb-fluent-api-ext")
project.setPackaging("jar")
project.setVersion("0.0.1")
project.setName("JAXB Fluent API Extensions");

通过jaxb-fluent-api扩展,您可以像这样编写上面的代码:

Project project = factory.createProject()
    .withModelVersion("4.0.0");
    .withGroupId("redmosquito")
    .withArtifactId("jaxb-fluent-api-ext")
    .withPackaging("jar")
    .withVersion("0.0.1")
    .withName("JAXB Fluent API Extensions");

这基本上就是fluent api的全部内容。

于 2012-06-25T14:56:45.813 回答