This is the third way we mentioned in this parent post of creating java domain objects, or data access objects, mapping files.
We need to create an Ant task within our build.xml file in order to generate our domain objects, daos or xml mapping files.
Once this is done, we have to execute ant hbm (our task name) and our files will be generated. Notice that you need to include a reference to every library we are going to use (hibernate-tools, freemarker, log libraries, …).
Read the rest of this entry »
Archivo de la etiqueta: hibernate tools
Creating java domain objects from a database with an Ant task and Hibernate tools
Creating Java domain objects with the Maven Hibernate plugin and Hibernate tools.
Visit my new website http://java4developers.com
This is the second way we mentioned in this parent post of creating java domain objects, or data access objects, mapping files. The Hibernate 3 Maven plugin webpage show us which goals are available for this plugin. In this post we are going to use the following four ones:
- hibernate3:hbm2cfgxml: Generates hibernate.cfg.xml.
- hibernate3:hbm2hbmxml: Generates a set of hbm.xml files.
- hibernate3:hbm2java: Generates Java domain objects.
- hibernate3:hbm2dao: Generates data access objects.
Using Hibernate tools through Maven and Ant
Hibernate Tools is a toolset for Hibernate3 implemented as an integrated suite of Eclipse plugins, together with a unified Ant task for integration into the build cycle. Hibernate Tools is a core component of JBoss Tools and hence also part of JBoss Developer Studio.
The previous paragraph is the definition of Hibernate tools that you can find in the Hibernate official webpage. This post is going to show you how to generate your domain Java classes from the database schema using 3 different perspectives:
- Using the integrated Hibernate tools plugin in Eclipse (the easiest way).
- Through the Hibernate 3 Maven plugin.
- Creating an Ant task.