我有一两个不应该在映射过程中生成的类。有没有一种方法可以指定不在 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>