使用 jaxb2 maven 插件跳过 Java 文件中的“Generate on...”

发布于 2024-11-27 05:30:53 字数 469 浏览 1 评论 0原文

我想让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

顾挽 2024-12-04 05:30:53

如果您使用命令行源生成器,请使用 -no-header;如果您使用 ant,请使用 header='false'

在pom中,配置-no-header

Use -no-header if you use command line source generator or header='false' if you use ant.

In the pom, in configuration <args><arg>-no-header</arg></args>

长安忆 2024-12-04 05:30:53

补充一下,我使用 Maven,对我有用的是:

<arguments>-no-header</arguments> 

Just to add, I use Maven and what worked for me was:

<arguments>-no-header</arguments> 
撞了怀 2024-12-04 05:30:53

使用“noGenerateHeaderComments”
例子:

            <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxb2-maven-plugin</artifactId>
            <version>2.1</version>
            <executions>
                <execution>
                    <id>xjc</id>
                    <goals>
                        <goal>xjc</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <outputDirectory>${project.basedir}/src/main/java</outputDirectory>
                <clearOutputDir>false</clearOutputDir>
                <sources>
                    <source>${project.basedir}/src/main/resources/xsd</source>
                </sources>      
                <noGeneratedHeaderComments>true</noGeneratedHeaderComments>
            </configuration>
        </plugin>  

use "noGeneratedHeaderComments"
example:

            <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxb2-maven-plugin</artifactId>
            <version>2.1</version>
            <executions>
                <execution>
                    <id>xjc</id>
                    <goals>
                        <goal>xjc</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <outputDirectory>${project.basedir}/src/main/java</outputDirectory>
                <clearOutputDir>false</clearOutputDir>
                <sources>
                    <source>${project.basedir}/src/main/resources/xsd</source>
                </sources>      
                <noGeneratedHeaderComments>true</noGeneratedHeaderComments>
            </configuration>
        </plugin>  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文