I'm looking for a solution to generate a checksum for any type of Java object, which remains the same for every execution of an application that produces the same object.
I tried it with Object.hashCode()
, but the api says
....This integer need not remain consistent from one execution of an application to another execution of the same application.