Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

Maven Java Source Code Generation for Hibernate

I´m busy converting an existing project from an Ant build to one using Maven. Part of this build includes using the hibernate hbm2java tool to convert a collection of .hbm.xml files into Java. ...
3
votes
1answer
1k views

How do I configure the hbm2java maven2 plugin to generate POJOs for all mapping files

I am trying to migrate my ant build to maven2. in my build.xml I invoke the hbm2java in the following way: <hibernatetool destdir="/src/generated/"> <configuration ...
3
votes
1answer
700 views

How to generate comments in hbm2java created POJO?

My current setup using hibernate uses the hibernate.reveng.xml file to generate the various hbm.xml files. Which are then turned into POJOs using hbm2java. We spent some time while designing our ...
3
votes
4answers
1k views

How to add hbm2java task to Ant in Neatbeans

I'm trying to generate POJO's from mapping xml files. I read something about adding an ant task, to do it easily. I've added this xml below to my project's build-impl.xml in Netbeans, but nothing ...
2
votes
2answers
2k views

How to configure hbm2java and hbm2dao to add packagename to generated classes

I'm trying to configure hbm2java with maven to generate POJO classes and DAO objects. One of the issues I'm dealing with is package names aren't generated. I'm using the following pom for that: ...
2
votes
5answers
2k views

hibernate hbm2hbmxml

I am trying to use ant hibernatetool task to generate hbm.xml files from my db schema in mysql. ant task runs without errors but no hbm.xml files are generated. What am I missing... Here are the ...
1
vote
1answer
62 views

What are best practices for using Hibernate's hbm2java?

I am using Hibernate, Maven, and Eclipse (STS build) to build a project. I'm using hbm.xml files to specify my schema. I want to use Hibernate's hbm2java to generate my model classes. I have it ...
1
vote
1answer
476 views

What's the easiest way to amend the file name of pojos during hbm2java generation

I'm using hbm2java via maven to generate pojos, it will produce files such as Table.java, but what I want is AbstractTable.java Is there an easy way to do this? From my pom.xml: <plugin> ...
1
vote
1answer
969 views

Maven doesn't compile target/hibernate3/generated-sources

Can someone tell me how to configure maven for it also to compile sources from the target/hibernate3/generated-sources directory? I have already read this and other posts but they don't seem to solve ...
1
vote
1answer
590 views

Class inheritance with Hibernate and hbm2java

I am generating my domain objects from my hbm files with hbm2java and now I want them to all inherit a base class. This class will have some utility methods for dealing with listeners. It does not ...
0
votes
0answers
28 views

How to overwrite POJO's setter method while using hbm2java

I am using hbm2java to convert my *.hbm files into *.java files. I want to modify the setter method of one of my property. When I use the "<meta attribute="class-code">" in hbm with a setter ...
0
votes
1answer
208 views

hbm2java failed:Unable to load class declared as <mapping class=“com.dss.domain.Foo”/>

I am implementing generation of the domain/model POJOs from database using the Hibernate3 Maven Plugin. The rationale is to ensure a DBA's updates to the database are automatically mapped to the model ...
0
votes
1answer
256 views

Maven with hibernate tools

I am trying to generate my classes and the hibernate.cfg.xml with maven. Well i have classes in my project which depend on the generated java files so i will probably have to execute this process on ...
0
votes
0answers
63 views

Can I use hbm2java without superclass of my class in hbm.xml, but with generated java file of this class

I have XXX.hbm.xml file with a class that inherits another class. I havenot YYY.hbm.xml file for parent class, but I have generated java file. Can I generate java file from my XXX.hbm.xml using ...
0
votes
2answers
267 views

hibernate reverse engineering to include a @Transient property

I am trying to include following private org.springframework.web.multipart.commons.CommonsMultipartFile photo; @Transient public CommonsMultipartFile getPhoto() { return photo; ...
0
votes
2answers
518 views

Hibernate reverse engineering primary keys (EmbeddedId to IdClass)

I am using hbm2java (hibernate3-maven-plugin) in order to generate entities. How do I switch the auto generated @EmbeddedId to @IdClass? Thanks
0
votes
2answers
477 views

POJO from HBM file

HI All, I am new to hibernate and I would to create POJO from xxx.hbm.xml file. Is it possible? Please respond Regards, Vikram A. Deshpande