I'm wondering whether it's possible to figure out if some serialVersionUID has been automatically generated (by the JVM) or whether a static one is explictly defined in the class.
Any clue if it's possible to do, and if so how?
|
I'm wondering whether it's possible to figure out if some serialVersionUID has been automatically generated (by the JVM) or whether a static one is explictly defined in the class. Any clue if it's possible to do, and if so how? |
|||
|
Use reflection.Here's an example (I haven't checked the exact contract for the serialVersionUID field, though):
|
|||||
|
|
Did you try through introspection to check for the field serialUID ? I don't know if the JVM will assign it this way or just store it in a different manner when generating it. Regards, Stéphane |
|||
|
|
serialVersionUIDs? – home Aug 24 '11 at 12:31