When class implements Serializable in Eclipse, I have two options: add default serialVersionUID(1L) or generated serialVersionUID(3567653491060394677L). I think that first one is cooler, but many times I saw people using the second option. Is there any reason to generate long serialVersionUID?
| |||||||||||||
feedback
|
|
As far as I can tell, that would be only for compatibility with previous releases. This would only be useful if you neglected to use a serialVersionUID before, and then made a change that you know should be compatible but which causes serialization to break. See the Java Serialization Spec for more details. | |||
|
feedback
|
|
The purpose of the serialization version UID is to keep track of different versions of a class in order to perform valid serialization of objects. The idea is to generate an ID that is unique to a certain version of an class, which is then changed when there are new details added to the class, such as a new field, which would affect the structure of the serialized object. Always using the same ID, such as If the ID is omitted, Java will actually calculate the ID for you based on fields of the object, but I believe it is an expensive process, so providing one manually will improve performance. Here's are a couple of links to articles which discuss serialization and versioning of classes: | |||||||||||||||||||
feedback
|
|
The main reason for the generated one would be to make it compatible with an existing version of the class that already has persisted copies. | |||
|
feedback
|
|
The "long" default of the So if you add the default version number, your class will (de-)serialize faster as long as nothing has structurally changed, but you'll have to take care that if you change the class (add/remove fields) you also update the serial number. If you do not have to be compatible to existing bit streams, you can just put | ||||
|
feedback
|
|
You absolutely should create a serialVersionUID every time you define
a class that implements
| |||
|
feedback
|
|
If you don't specify a serialVersionUID then Java makes one on the fly. The generated serialVersionUID is that number. If you change something in your class that doesn't really make your class incompatible with previous serialized verisons but changes the hash, then you need to use the generated very-large-number serialVersionUID (or the "expected" number from the error message). Otherwise, if you are keeping track of everything yourself, 1, 2, 3... is better. | |||
|
feedback
|
|
Because in many cases default id is not unique. so we create id for making unique concept. | |||
|
feedback
|