-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: maven hbm2java custom pojo file names
PostPosted: Fri Nov 19, 2010 9:16 am 
Newbie

Joined: Fri Nov 19, 2010 8:57 am
Posts: 11
Hi there,
What's the easiest way to amend the file name of pojos during hbm2java generation.

For example I have Table.java but what I want is AbstractTable.java

I've been looking on the net all day and through the tools documentation but I'm not having a lot of luck.

Thanks in advance!

Adam


Top
 Profile  
 
 Post subject: Re: maven hbm2java custom pojo file names
PostPosted: Tue Nov 23, 2010 12:09 pm 
Newbie

Joined: Fri Nov 19, 2010 8:57 am
Posts: 11
Yes, pseudo-custom templates do seem to be the way to go to achieve this.
In the end I extracted the pojo template files out of the jar so I could modify them and then used hbmtemplate on the pojo templates and filepattern to do this. It's a bit annoying that you can't just use the filepattern with hbm2pojo.

Here's my pom if anyone's interested:

Code:
           <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>


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.