Hibernate3-Maven-Plugin排除生成的文件

时间:2014-08-15 13:50:28

标签: java hibernate maven hibernate3-maven-plugin

我有一两个不应该在映射过程中生成的类。有没有办法可以指定不在hbm2java目标中生成的各个类?

我有以下插件配置:

<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>3.0</version>
<executions>
    <execution>
        <id>hbm2java</id>
        <phase>generate-sources</phase>
        <goals>
            <goal>hbm2java</goal>
        </goals>
        <inherited>false</inherited>

        <configuration>
            <hibernatetool>
                <annotationconfiguration propertyFile="src/main/resources/hibernate.cfg.xml" />
                <hbm2java jdk5="true" ejb3="true"/>
            </hibernatetool>

        </configuration>
    </execution>
</executions>

1 个答案:

答案 0 :(得分:0)

在reveng.xml文件中指定您不想要的表。 E.g。

<table-filter match-name="TABLE_A" exclude="true" />
<table-filter match-name="TABLE_B" exclude="true" />

然后在您的配置中引用reveng.xml。