我使用maven插件生成pojo和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>
<component>
<name>hbm2dao</name>
<implementation>configuration</implementation>
<outputDirectory>src/main/java</outputDirectory>
</component>
<component>
<name>hbm2ddl</name>
<implementation>configuration</implementation>
<outputDirectory>src/main/resources/sql</outputDirectory>
</component>
</components>
<componentProperties>
<jdk5>true</jdk5>
<format>true</format>
<configurationfile>src/main/resources/hibernate/hibernate.cfg.xml</configurationfile>
<drop>true</drop>
<create>true</create>
<outputfilename>init.sql</outputfilename>
<templatepath>src/main/resources/templateftl</templatepath>
</componentProperties>
</configuration>
非常糟糕的dao和pojo是在同一个包中生成的
在hibernate工具中,它是硬编码的
DAOExporter : setFilePattern("{package-name}/{class-name}Home.java");
POJOExporter : setFilePattern("{package-name}/{class-name}.java");
我发现它非常丑陋,我想在不同的包中加入pojo和dao,也不会在“Home”中添加Dao而只是“Dao”
您是否知道是否有某种方法可以提供自定义导出器实现或在插件中配置某些内容来实现此目的?
感谢
答案 0 :(得分:0)
最后我使用JD-gui来反编译并读取插件的代码,我设法使用不同的模板每次运行目标为hbmtemplate的插件运行2次:一个用于实体的一个用于dao。 / p>
我发现可以通过在exporterclass中指定自定义导出器来使用它。 maven插件缺少一些xsd之王...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>generate-sources</phase>
<id>genpojo</id>
<goals>
<goal>hbmtemplate</goal>
<goal>hbm2ddl</goal>
</goals>
<configuration>
<components>
<component>
<name>hbmtemplate</name>
<implementation>configuration</implementation>
<outputDirectory>src/main/java</outputDirectory>
</component>
<component>
<name>hbm2ddl</name>
<implementation>configuration</implementation>
<outputDirectory>src/main/resources/sql</outputDirectory>
</component>
</components>
<componentProperties>
<jdk5>true</jdk5>
<format>true</format>
<configurationfile>src/main/resources/hibernate/hibernate.cfg.xml</configurationfile>
<drop>true</drop>
<create>true</create>
<outputfilename>init.sql</outputfilename>
<templatepath>src/main/resources/templateftl</templatepath>
<filepattern>{package-name}/pojogen/{class-name}.java</filepattern>
<template>pojo/Pojo.ftl</template>
</componentProperties>
</configuration>
</execution>
<execution>
<phase>generate-sources</phase>
<id>gendao</id>
<goals>
<goal>hbmtemplate</goal>
</goals>
<configuration>
<components>
<component>
<name>hbmtemplate</name>
<implementation>configuration</implementation>
<outputDirectory>src/main/java</outputDirectory>
</component>
</components>
<componentProperties>
<jdk5>true</jdk5>
<format>true</format>
<configurationfile>src/main/resources/hibernate/hibernate.cfg.xml</configurationfile>
<drop>true</drop>
<create>true</create>
<templatepath>src/main/resources/templateftl</templatepath>
<!-- <exporterclass>com.db.exporter.MyDAOExporter</exporterclass>-->
<filepattern>{package-name}/daogen/{class-name}Dao.java</filepattern>
<template>dao/daohome.ftl</template>
</componentProperties>
</configuration>
</execution>
</executions>
</plugin>