我有一两个不应该在映射过程中生成的类。有没有办法可以指定不在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>
答案 0 :(得分:0)
在reveng.xml文件中指定您不想要的表。 E.g。
<table-filter match-name="TABLE_A" exclude="true" />
<table-filter match-name="TABLE_B" exclude="true" />
然后在您的配置中引用reveng.xml。