我正在使用maven jaxb2插件从xsd文件生成Java类。最近我遇到了问题,我的架构文件列表确实很长,并且我在shemaFiles
标签中将它们全部写为逗号分隔值,并且线本身很长,我担心将来它会影响代码可读性和bug原因。那么有没有任何解决方案可以在单独的标签中写入文件,如:
<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>
提前致谢。
答案 0 :(得分:4)
我们也有很多架构。我们简单地省略了&lt; schemaFiles&gt; element,让它读取&lt; schemaDirectory&gt;中的所有模式。