2010-11-19 21 views
2

hbm2java生成時のPOJOのファイル名を修正する最も簡単な方法は何、そのようなTable.javaなどのファイルを生成しますが、私が欲しいのは 私はPOJOを生成するのmaven経由hbm2javaを使用してい

AbstractTable.java

ありますこれを行う簡単な方法はありますか?私のpom.xmlから

 <plugin> 
<groupId>org.codehaus.mojo</groupId> 
<artifactId>hibernate3-maven-plugin</artifactId> 
<version>2.2</version> 
<executions> 
    <execution> 
     <id>hbm2hbmxml</id> 
     <phase>generate-sources</phase> 
     <goals> 
      <goal>hbm2hbmxml</goal> 
     </goals> 
     <configuration> 
      <components> 
       <component> 
        <name>hbm2hbmxml</name> 
        <outputDirectory>src/main</outputDirectory> 
       </component> 
      </components> 
    <componentProperties> 
    <revengfile>src/conf/reveng.xml</revengfile> 
    <propertyfile>src/conf/hibernate.properties</propertyfile> 
    <templatepath>src/conf/hibernate-templates</templatepath> 
    <jdk5>true</jdk5> 
    </componentProperties> 
     </configuration> 
    </execution> 
    <execution> 
     <id>hbm2cfgxml</id> 
     <phase>generate-sources</phase> 
     <goals> 
      <goal>hbm2cfgxml</goal> 
     </goals> 
     <configuration> 
      <components> 
       <component> 
        <name>hbm2cfgxml</name> 
        <outputDirectory>src/main</outputDirectory> 
       </component> 
      </components> 
    <componentProperties> 
    <revengfile>src/conf/reveng.xml</revengfile> 
    <propertyfile>src/conf/hibernate.properties</propertyfile> 
    <templatepath>src/conf/hibernate-templates</templatepath> 
    <jdk5>true</jdk5> 
    </componentProperties> 
     </configuration> 
    </execution> 
    <execution> 
     <id>hbm2java</id> 
     <phase>generate-sources</phase> 
     <goals> 
      <goal>hbm2java</goal> 
     </goals> 
     <configuration> 
      <components> 
       <component> 
        <name>hbm2java</name> 
        <outputDirectory>src/main</outputDirectory> 
       </component> 
      </components> 
    <componentProperties> 
    <revengfile>src/conf/reveng.xml</revengfile> 
    <propertyfile>src/conf/hibernate.properties</propertyfile> 
    <templatepath>src/conf/hibernate-templates</templatepath> 
    <jdk5>true</jdk5> 
    <namingstrategy>uk.co.company.product.hibernate.CustomNamingStrategy</namingstrategy> 
    </componentProperties> 
     </configuration> 
    </execution> 
</executions> 
<dependencies> 
<dependency> 
    <groupId>org.hibernate</groupId> 
    <artifactId>hibernate-tools</artifactId> 
    <version>3.2.3.GA</version> 
</dependency> 
<dependency> 
    <groupId>org.codehaus.mojo</groupId> 
    <artifactId>hibernate3-maven-plugin</artifactId> 
    <version>2.2</version> 
</dependency> 
      <dependency> 
       <groupId>mysql</groupId> 
       <artifactId>mysql-connector-java</artifactId> 
       <version>5.0.8</version> 
      </dependency> 
      <dependency> 
       <groupId>cglib</groupId> 
       <artifactId>cglib-nodep</artifactId> 
       <version>2.1_3</version> 
      </dependency> 
</dependencies> 
    </plugin> 

答えて

2

カスタムテンプレートは、これを達成するために移動するための方法であるように見えるん。 最後に、pojoテンプレートファイルをjarファイルから抽出したので、それらを変更してから、htmlmtemplateをpojoテンプレートとfilepatternで使ってこれを行うことができました。 hbm2pojoでファイルパターンを使用することはできません。

誰もが興味を持っていた場合にここに私のポンポンです:

  <plugin> 
      <groupId>org.codehaus.mojo</groupId> 
      <artifactId>hibernate3-maven-plugin</artifactId> 
      <version>2.2</version> 
      <executions> 
       <execution> 
        <id>hbm2hbmxml</id> 
        <phase>generate-sources</phase> 
        <goals> 
         <goal>hbm2hbmxml</goal> 
        </goals> 
        <configuration> 
         <components> 
          <component> 
           <name>hbm2hbmxml</name> 
           <outputDirectory>src/main</outputDirectory> 
          </component> 
         </components> 
         <componentProperties> 
          <revengfile>src/conf/reveng.xml</revengfile> 
          <propertyfile>src/conf/hibernate.properties</propertyfile> 
          <templatepath>src/conf/hibernate-templates</templatepath> 
          <jdk5>true</jdk5> 
         </componentProperties> 
        </configuration> 
       </execution> 
       <execution> 
        <id>hbm2cfgxml</id> 
        <phase>generate-sources</phase> 
        <goals> 
         <goal>hbm2cfgxml</goal> 
        </goals> 
        <configuration> 
         <components> 
          <component> 
           <name>hbm2cfgxml</name> 
           <outputDirectory>src/main</outputDirectory> 
          </component> 
         </components> 
         <componentProperties> 
          <revengfile>src/conf/reveng.xml</revengfile> 
          <propertyfile>src/conf/hibernate.properties</propertyfile> 
          <templatepath>src/conf/hibernate-templates</templatepath> 
          <jdk5>true</jdk5> 
         </componentProperties> 
        </configuration> 
       </execution> 
       <execution> 
        <id>hbmtemplate0</id> 
        <phase>generate-sources</phase> 
        <goals> 
         <goal>hbmtemplate</goal> 
        </goals> 
        <configuration> 
         <components> 
          <component> 
           <name>hbmtemplate</name> 
           <outputDirectory>src/main</outputDirectory> 
          </component> 
         </components> 
         <componentProperties> 
          <revengfile>src/conf/reveng.xml</revengfile> 
          <propertyfile>src/conf/hibernate.properties</propertyfile> 
          <templatepath>src/conf/hibernate-templates</templatepath> 
          <jdk5>true</jdk5> 
          <ejb3>false</ejb3> 
          <filepattern>{package-name}/Abstract{class-name}.java</filepattern> 
          <templateprefix>pojo/</templateprefix> 
          <destdir>src/main</destdir> 
          <template>pojo/Pojo.ftl</template> 
         </componentProperties> 
        </configuration> 
       </execution> 
       <execution> 
        <id>hbmtemplate1</id> 
        <phase>generate-sources</phase> 
        <goals> 
         <goal>hbmtemplate</goal> 
        </goals> 
        <configuration> 
         <components> 
          <component> 
           <name>hbmtemplate</name> 
           <outputDirectory>src/main</outputDirectory> 
          </component> 
         </components> 
         <componentProperties> 
          <revengfile>src/conf/reveng.xml</revengfile> 
          <propertyfile>src/conf/hibernate.properties</propertyfile> 
          <templatepath>src/conf/hibernate-templates</templatepath> 
          <jdk5>true</jdk5> 
          <ejb3>false</ejb3> 
          <filepattern>{package-name}/{class-name}.java</filepattern> 
          <templateprefix>pojoImpl/</templateprefix> 
          <destdir>src/main</destdir> 
          <template>pojoImpl/PojoImpl.ftl</template> 
         </componentProperties> 
        </configuration> 
       </execution> 
       <execution> 
        <id>hbmtemplate2</id> 
        <phase>generate-sources</phase> 
        <goals> 
         <goal>hbmtemplate</goal> 
        </goals> 
        <configuration> 
         <components> 
          <component> 
           <name>hbmtemplate</name> 
           <outputDirectory>src/main</outputDirectory> 
          </component> 
         </components> 
         <componentProperties> 
          <revengfile>src/conf/reveng.xml</revengfile> 
          <propertyfile>src/conf/hibernate.properties</propertyfile> 
          <templatepath>src/conf/hibernate-templates</templatepath> 
          <jdk5>true</jdk5> 
          <ejb3>false</ejb3> 
          <filepattern>{package-name}/Abstract{class-name}DAO.java</filepattern> 
          <templateprefix>dao/</templateprefix> 
          <destdir>src/main</destdir> 
          <template>dao/daohome.ftl</template> 
          <sessionFactoryName>sessionFactoryName.goes.here</sessionFactoryName> 
         </componentProperties> 
        </configuration> 
       </execution> 
       <execution> 
        <id>hbmtemplate3</id> 
        <phase>generate-sources</phase> 
        <goals> 
         <goal>hbmtemplate</goal> 
        </goals> 
        <configuration> 
         <components> 
          <component> 
           <name>hbmtemplate</name> 
           <outputDirectory>src/main</outputDirectory> 
          </component> 
         </components> 
         <componentProperties> 
          <revengfile>src/conf/reveng.xml</revengfile> 
          <propertyfile>src/conf/hibernate.properties</propertyfile> 
          <templatepath>src/conf/hibernate-templates</templatepath> 
          <jdk5>true</jdk5> 
          <ejb3>false</ejb3> 
          <filepattern>{package-name}/{class-name}DAO.java</filepattern> 
          <templateprefix>daoImpl/</templateprefix> 
          <destdir>src/main</destdir> 
          <template>daoImpl/daoImpl.ftl</template> 
          <sessionFactoryName>sessionFactoryName.goes.here</sessionFactoryName> 
         </componentProperties> 
        </configuration> 
       </execution> 
      </executions> 
      <dependencies> 
       <dependency> 
        <groupId>org.hibernate</groupId> 
        <artifactId>hibernate-tools</artifactId> 
        <version>3.2.3.GA</version> 
       </dependency> 
       <dependency> 
        <groupId>org.codehaus.mojo</groupId> 
        <artifactId>hibernate3-maven-plugin</artifactId> 
        <version>2.2</version> 
       </dependency> 
       <dependency> 
        <groupId>mysql</groupId> 
        <artifactId>mysql-connector-java</artifactId> 
        <version>5.0.8</version> 
       </dependency> 
       <dependency> 
        <groupId>cglib</groupId> 
        <artifactId>cglib-nodep</artifactId> 
        <version>2.1_3</version> 
       </dependency> 
      </dependencies> 
     </plugin> 
関連する問題