-->
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.  [ 1 post ] 
Author Message
 Post subject: SaveOrUpdateEventListener - Object state BEFORE and after
PostPosted: Mon Sep 10, 2007 11:11 am 
Newbie

Joined: Mon Sep 10, 2007 10:38 am
Posts: 1
I'm trying to figure out how I can use a Listener in Hibernate to tell me the state of an object just before the object is updated in the database. Let's say I have an object "Car" with an attribute "color". I've created a listener which extends DefaultSaveOrUpdateEventListener where I override the onSaveOrUpdate() method:

Code:
public void onSaveOrUpdate(SaveOrUpdateEvent event) throws HibernateException {
     if (event.getObject() instanceof Car) {
        Car car = (Car) event.getObject();
        System.out.println("Saving a car with new color: " + car.getColor());
         // Problem: what color-value does the car have right now in the database?
     }
}


The problem is that I cannot figure out how what the "old" color-value of the Car object is. Is this even possible? Maybe using an Interceptor instead? I ultimately hope to be able to record changes like when a Car changes color from, say, "red" to "blue"


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

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.