0
votes
0answers
54 views

Hibernate Query for selecting only some special classes from a table per hierarchy table

I have the following class structure: GParent |-P1 |-C1 |-C2 |-C3 |-P2 |-C4 |-C5 GParent, P1, P2, Ci (i=0..6) are classes. They have been mapped to a table called yatable in my database. ...
0
votes
2answers
518 views

Error Creating SessionFactory Hibernate in myeclipse reverse engineered database

I'm learning hibernate in myeclipse. I tried to reverse engineer a mysql table and follow the official myeclipse tutorial. All the xml files are generated but writing a simple test programme it gives ...
1
vote
2answers
506 views

Entity hierarchy in Hibernate

What's the proper way to create 2 entities where 1 is a parent of the other? For example, we have the following 2 tables: Email_Outbox ------------ Id Email_Id Date_Sent Email_Outbox_Schedule ...