Chris Johnston

My thoughts on Agile, Java and Ruby on Rails (mostly)
  • Home
  • About Me
  • Acronyms
  • Contact Me
  • Projects
  • Resume

Hibernate Question – how to work with history

Published by Chris Johnston on August 4, 2005 08:53 pm under Application Development, J2EE

I have a small hibernate question that I can not seem to find an answer to, however, this may be due to my not knowing how to search for it properly.

The question is: how to work with objects in Java that, in the database, must preserve history? A lot of database schemas, instead of updating rows, do a new insert and mark the new row as active in some way. This allows an organization to basically version their data and ensures that they never loose or delete anything.

Below is a common schema for capturing history. You have a central table, Person, that contains only the fields that are unlikely to change. In this example, I am assuming that most people do not change their names. Off of that central table, are tables that hold all the other data related to the central table. In this case, the two other tables hold a person’s address and phone number. As this data changes, the records in the respective table are not updated. Instead, another row is added to the table and it becomes the active record. Below is a diagram showing the database schema.

Diagram showing common schema to handle record history in a database

Just to make this completely clear, below shows the data in the three tables as they would exist after a few updates.

Person
personID | firstname | lastname
---------|-----------|----------
  1      | mickey    | mouse

Address
addressID | street             | Person_personID
----------|--------------------|----------------
  1       | 112 somewhere str. |  1
  2       | 20 elsewhere ave.  |  1

Phone
phoneID | phone_number | Person_personID
--------|--------------|----------------
  1     | 555-555-1234 |  1
  2     | 555-555-4321 |  1
  3     | 555-444 4444 |  1

So, here is the question. In Java, I would create the following class diagram:

Class diagram of History hibernate question

The problem is that if I modify any of the associated objects, Hibernate will simply go in and update the associated rows in the database. So, is there any way to force Hibernate to insert a new row instead of updating the existing row?

No Comment

Comments are closed.

Posting your comment.

  • Search

  • Categories

    • .NET (2)
    • Agile (41)
    • Apple Mac (15)
    • Application Development (123)
    • Articles (4)
    • ColdFusion (2)
    • Demo/Tutorial (3)
    • Eclipse (1)
    • Flash (6)
    • General (567)
    • Git (1)
    • Google (1)
    • Hibernate (4)
    • J2EE (39)
    • Java (111)
    • Java Frameworks (5)
    • Links (1)
    • Linux (33)
    • Miscellanous (2)
    • NetBeans (3)
    • News (10)
    • Open Source (6)
    • Photography (2)
    • Programming (33)
    • Python (1)
    • Ruby (27)
    • Ruby on Rails (14)
    • Ruby on Rails Web Apps (1)
    • Software (14)
    • Spring (4)
    • Teaching (1)
    • TeamDocs (6)
    • Technology (2)
    • Test Driven Development (1)
    • Thoughts (33)
    • ThoughtWorks (8)
    • Tips and Tricks (1)
    • Web Design (6)
    • Web Development (37)
    • Wicket (1)
  • Archives

    • June 2009 (1)
    • May 2009 (1)
    • April 2009 (7)
    • March 2009 (2)
    • February 2009 (6)
    • January 2009 (4)
    • December 2008 (3)
    • October 2008 (1)
    • September 2008 (2)
    • August 2008 (6)
    • July 2008 (4)
    • June 2008 (1)
    • May 2008 (8)
    • April 2008 (7)
    • March 2008 (2)
    • February 2008 (1)
    • January 2008 (5)
    • December 2007 (3)
    • November 2007 (4)
    • October 2007 (5)
    • September 2007 (2)
    • August 2007 (3)
    • July 2007 (6)
    • June 2007 (5)
    • May 2007 (5)
    • April 2007 (5)
    • March 2007 (6)
    • February 2007 (9)
    • January 2007 (16)
    • December 2006 (6)
    • November 2006 (15)
    • October 2006 (17)
    • September 2006 (27)
    • August 2006 (22)
    • July 2006 (14)
    • June 2006 (10)
    • May 2006 (18)
    • April 2006 (3)
    • March 2006 (6)
    • February 2006 (15)
    • January 2006 (7)
    • December 2005 (11)
    • November 2005 (8)
    • October 2005 (18)
    • September 2005 (24)
    • August 2005 (18)
    • July 2005 (21)
    • June 2005 (14)
    • May 2005 (23)
    • April 2005 (18)
    • March 2005 (34)
    • February 2005 (27)
    • January 2005 (27)
    • December 2004 (15)
    • November 2004 (17)
    • October 2004 (20)
    • September 2004 (10)
    • August 2004 (21)
    • July 2004 (9)
    • June 2004 (11)
    • May 2004 (4)
    • April 2004 (15)
    • March 2004 (12)
    • February 2004 (7)
    • January 2004 (17)
    • December 2003 (11)
    • November 2003 (8)
    • October 2003 (12)
    • September 2003 (12)
    • August 2003 (12)
    • July 2003 (23)
    • June 2003 (22)
    • May 2003 (14)
    • April 2003 (9)
    • March 2003 (22)
    • February 2003 (24)
    • January 2003 (32)
    • December 2002 (11)
    • November 2002 (16)
    • October 2002 (10)
    • September 2002 (9)
    • August 2002 (13)
  • Pages

    • About Me
    • Acronyms
    • Contact Me
    • Projects
    • Resume

Copyright © 2009 Chris Johnston
WordPress Theme based on Light Theme