JAXB:如何获取由 ant 任务@ generated 注释的源?
有没有办法将适用于 xjc.bat: 的选项 -mark-generate 传递
%JAXB_HOME%\bin\xjc.bat -mark-generated c:\TEMP\my.xsd
给相应的 ant 任务?
<taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask">
<classpath refid="classpath" />
</taskdef>
<xjc schema="my.xsd" destdir="src" package="gen.example">
<produces dir="src/gen" includes="**/*.java" />
</xjc>
Is there a way to pass the option -mark-generated, which is applicable to xjc.bat:
%JAXB_HOME%\bin\xjc.bat -mark-generated c:\TEMP\my.xsd
to the corresponding ant task?
<taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask">
<classpath refid="classpath" />
</taskdef>
<xjc schema="my.xsd" destdir="src" package="gen.example">
<produces dir="src/gen" includes="**/*.java" />
</xjc>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以传递 -mark- generated 以及嵌套在标签下的标签中不直接支持的其他选项,如下所示:
请参阅 Ant 任务参考 了解详细信息。编组快乐!
You can pass -mark-generated and other options which are not directly supported in an tag nested under the tag, like this:
See the Ant Task reference for details. Happy marshalling!