使用 jaxb2 maven 插件跳过 Java 文件中的“Generate on...”
我想让 maven-jaxb2-plugin
不写“免责声明”:
This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.2-hudson-jaxb-ri-2.2-63-
See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
Any modifications to this file will be lost upon recompilation of the source schema.
Generated on: 2011.08.01 at 09:20:43 AM CEST
至少是时间戳。
谢谢。
乌多.
I'd like to get the maven-jaxb2-plugin
to do not write the 'disclaimer':
This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.2-hudson-jaxb-ri-2.2-63-
See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
Any modifications to this file will be lost upon recompilation of the source schema.
Generated on: 2011.08.01 at 09:20:43 AM CEST
At least the timestamp.
Thank you.
Udo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用命令行源生成器,请使用
-no-header
;如果您使用 ant,请使用header='false'
。在pom中,配置-no-header
Use
-no-header
if you use command line source generator orheader='false'
if you use ant.In the pom, in configuration
<args><arg>-no-header</arg></args>
补充一下,我使用 Maven,对我有用的是:
Just to add, I use Maven and what worked for me was:
使用“noGenerateHeaderComments”
例子:
use "noGeneratedHeaderComments"
example: