Hey!
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!