This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes JSP and the fly likes Persistence of updated objects Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSP
Reply Bookmark "Persistence of updated objects" Watch "Persistence of updated objects" New topic
Author

Persistence of updated objects

Kumara SharmaS
Greenhorn

Joined: Nov 08, 2011
Posts: 7
Hi All,

This is the scenario 'm facing, I have different objects that are persisted to the DB.
All these objects are updated by user actions, but not always.

How to know if a particular object is updated by the user or not on the server side? If its not updated theres no need to persist it.
Is having a dirty/update check on the object a solution, on which persistence depends?

Or is there a better way to handle this?

Cheers
Piyush Mangal
Ranch Hand

Joined: Jan 22, 2007
Posts: 196
You can not be sure if data is actually changed by user on UI or not.
If you don't want to update record if there is no change, then you will have to maintain a copy of original object in session scope, compare the changed object passed from UI with original object in session
and then if there is any change , update the record in database.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Persistence of updated objects
 
Similar Threads
DAO to access to web service?
Required information on session.merge()
session.setAttribute for session persistence
GUI application design
database update techniques?