-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: ER best practices for update-aproval of complex objects.
PostPosted: Wed Apr 04, 2007 4:23 pm 
Newbie

Joined: Fri Nov 11, 2005 1:47 pm
Posts: 2
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp

Hibernate version: 3.2

I need to store complex objects (objects with child records), but also store potential revisions (awaiting approval) to these objects, and am not sure how I should handle my outrigger tables or mapping strategy.

Imagine I have an entity representing the current set of a customer profile:

Customer (
customerId,
firstname
lastname,
phone
...
...several dozen other flat fields...
...
)

CUSTOMER also has, for example, a many-to-one outrigger table of CUSTOMER PETS.

CUSTOMER_PET (
customerPetId,
customerId,
pet_name
pet_type
pet_age)

Finally, and here is the real problem, I need to manage the idea of an entity called CUSTOMER_UPDATE,
which contains all fields (and child records) for a customer object, plus a date submitted, a submitted_by, and some bookkeeping information.

This includes changes to the CUSTOMER_PET outrigger table.

My question is how to appropriately model this from an ER standpoint:

Solution 1:
I can manage two separate tables, CUSTOMER and CUSTOMER_UPDATE, with separate CUSTOMER_PET and CUSTOMER_UPDATE_PET child tables. On a hibernate level, though, this is a bit messy. From what I know of hibernate, I got the feeling that I would be mapping almost-identical objects to almost-identical tables. I didn't know if there were some tricks that would allow me to reuse the mapping for customer in a customer_update object, or the mapping for CUSTOMER_PET in a CUSTOMER_UPDATE_PET object.

Solution 2:
I can make a
CUSTOMER_ABSTRACT table:

CUSTOMER_ABSTRACT(
customer_abstract_id PK,
firstname
lastname,
phone
...etc....)

and two joined subclass tables for CUSTOMER and CUSTOMER_UPDATE.

CUSTOMER(
CUSTOMER_ID,
customer_abstract_id FK, unique),
)

CUSTOMER_UPDATE(
CUSTOMER_UPDATE_ID,
customer_abstract_id FK, unique),
date_submitted,
submitted_by,
other_bookkeeping_columns
)

This would allow me to get by with only one CUSTOMER_ABSTRACT_PET outrigger, by keeping a foreign key to CUSTOMER_ABSTRACT as opposed to CUSTOMER.

CUSTOMER_UPDATE(
CUSTOMER_UPDATE_ID,
customer_abstract_id FK, unique),
date_submitted,
submitted_by,
other_bookkeeping_columns
)

I think I know how to map this, using joined subclasses.

If anyone knows any other ways of approaching the update-approval problem, I would like to hear them.

In short, I am looking for best practices for persisting object graphs and the proposed changes to said graphs.

Many thanks,
JFD


Top
 Profile  
 
 Post subject:
PostPosted: Sat Apr 07, 2007 6:58 am 
Newbie

Joined: Sun Oct 08, 2006 8:03 am
Posts: 14
I think joined subclasses seems like a perfect solution.

John.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.