3

我正在使用 maven jaxb2 插件从 xsd 文件生成 Java 类。最近我遇到了一个问题,我的模式文件列表变得很长,我把它们都写在shemaFiles标签中作为逗号分隔的值,而且行本身很长,我担心将来它会影响代码的可读性并成为一个错误原因。那么有没有任何解决方案可以在单独的标签中写入文件,例如:

<schemaFilesList>
  <schemaFile>SharedResources/xsd/Common.xsd</schemaFile>
  <schemaFile>SharedResources/xsd/Another.xsd</schemaFile>
          .... 
 </schemaFilesList>

这是我现在拥有的代码:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>jaxb2-maven-plugin</artifactId>
  <executions>
    <execution>
      <goals>
        <goal>xjc</goal>
      </goals>
      <configuration>
        <extension>true</extension>
        <schemaDirectory>target/xsd</schemaDirectory>
        <!-- I have really long list of files here, in different directories-->
        <schemaFiles>
           SharedResources/xsd/Common.xsd,SharedResources/xsd/Messaging/EmailService.xsd, .....
        </schemaFiles>
      </configuration>
    </execution>
  </executions>
</plugin>

提前致谢。

4

1 回答 1

4

我们也有很多模式。我们只是省略了 <schemaFiles> 元素,让它读取 <schemaDirectory> 中的所有模式。

于 2013-04-04T19:02:04.773 回答