Custom hibernate tool exporter
问题 I use the maven plug in to generate pojo and dao : <groupId>org.codehaus.mojo</groupId> <artifactId>hibernate3-maven-plugin</artifactId> <version>2.2</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>hbm2java</goal> <goal>hbm2dao</goal> <goal>hbm2ddl</goal> </goals> </execution> </executions> <configuration> <components> <component> <name>hbm2java</name> <implementation>configuration</implementation> <outputDirectory>src/main/java</outputDirectory> </component>