Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a hierarchy of objects in hibernate. I have Customers and Customers have Locations.

I would like to associate an Alert object with either a customer or location.

How would I represent this type of association in hibernate?

In tables I would think to create them like so:

Alert Table: alertId, alertName

Alert Relations: alertId, entityTable, entityId

The entity table could either be a Customer or Location and entityId would be the id in that respective table.

Can hibernate support this type of relationship? If so what would the table structure and relationship look like in the mapping?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.