Question

I made some "save" bean functionality in my Java Web Application (JSF1.2, RichFaces). It is using JAXB to turn it into an XML string and then it is stored in the database. If the user loads this back, I want to notify the user if the (bean)content is changed and it should be saved again.

My idea is to override the hashCode() function 'with' org.apache.commons.lang.builder.HashCodeBuilder, however I have lots of fields and child elements. Is there any other way to handle this kind of functionality?

EDIT

"Comparison" is done on another view!

Any help would be appreciated!

Was it helpful?

Solution

You could add a boolean dirty; flag to the bean, set it to true in your setters and clear it during a reload and after a save.

OTHER TIPS

You can't rely on hashCode alone to determine if an object has been changed. That is, just because the object has the same hashCode as before, does NOT mean that it has not been changed.

You can use Java's MD5 functionality:

MessageDigest digest = java.security.MessageDigest.getInstance("MD5");
digest.update(myObject);
byte[] hash = digest.digest();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top