vote up 2 vote down star

Duplicate http://stackoverflow.com/questions/285793/why-should-i-bother-about-serialversionuid

Using Eclipse for some java work right now. My class name is underlined in yellow. I can either suppress the warning or just add the frickin serial id.

I dont care either way (or should i?), but what exactly IS this serial id?

thanks

flag

75% accept rate

closed as exact duplicate by Paul Tomblin, bruno conde, Tom Hawtin - tackline, Bombe, jrockway Mar 5 at 15:17

1 Answer

vote up 3 vote down check

It has to do with Java serialization.

When the fields of a class changes, you can no longer unserialize other versions of the class. If you try, Java will throw an exception.

However sometimes the change in fields don't matter and you want to say "unserialize anyway." To do that, you define this serial number. Now Java will use that number rather than reflection to decide whether your class definition is "different."

Finally, you can get around all this by defining your own serialization functions, and indeed many advocates insist that you should.

link|flag
thanks for your response – theman_on_vista Mar 5 at 15:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.