IntelliJ open source
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Object Relational Mapping
 
RSS feed
 
New topic
Author

Hibernate - how to compose MANAGER-EMPLOYEE association? (newbie)

Adrian Burlington
Ranch Hand

Joined: Jun 16, 2009
Messages: 32

Hi,

Using Hibernate I wonder how can I solve this issue: I have a table of USER, some are employees some are managers. Managers have a NULL value in the MANAGER_ID (I over simplify this issue on purpose).

Q: what should be the relationship in the POJO for USER so when I select a USER with NULL value - I will be able to get a list of all employees
AND when selecting an employee - I can get the Manager.

A MANAGER_ID is a USER_ID (see example below)



Cameron Wallace McKenzie
author and cow tipper
Bartender

Joined: Aug 26, 2006
Messages: 4603

I think you may have lurked into the muddy waters of Hibernate Inheritance Mapping.

How to map Inheritance with Hibernate and JPA: Tutorial

You have an 'is-a' as opposed to a 'has-a' relationship there. So, I think you'll need inheritance.

-Cameron

Author of Hibernate Made Easy, What is WebSphere???, Portlet Programming Made Easy and the SCJA Certification Guides
My Hibernate and JPA Tutorials * My Mock Java Certification Exams * My Online Java Tutorials * My CBT Portlet Tutorials.

Rahul Babbar
Ranch Hand

Joined: Jun 28, 2008
Messages: 182

I think your entity should have a field name manager of type User which should be nullable and it should have one to one association with the User entity and ofcourse your manager field will NOT be unique.(Such type of Joins are called Self Joins in SQL)

Rahul Babbar
Adrian Burlington
Ranch Hand

Joined: Jun 16, 2009
Messages: 32



solved!
Thank you guys.
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Object Relational Mapping
 
RSS feed
 
New topic
MyEclipse Enterprise Workbench