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?

link|improve this question

1  
Exact duplicate of this question. stackoverflow.com/questions/285793/… – Marc W May 20 '09 at 14:41
12  
How is that exact duplicate? I dont ask why generate it at all, but why generate long serialVersionUID. – IAdapter May 20 '09 at 14:43
2  
When Jon Skeet uses serialVersionUID, he uses 0L: stackoverflow.com/questions/605828/… ;) – Hanno Fietz Oct 5 '09 at 13:19
feedback

7 Answers

up vote 15 down vote accepted

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.

link|improve this answer
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 1L means that in the future, if the class definition is changed which causes changes to the structure of the serialized object, there will be a good chance that problems when trying to deserialize an object.

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:

link|improve this answer
7  
The idea behind using 1L is so that you increment it every time you change the class properties or methods. – Powerlord May 20 '09 at 14:47
Thank you for the information :) – coobird May 20 '09 at 14:51
5  
There is no runtime performance impact of allowing the serialversionUID to be generated automatically - it's generated at compile time by javac...if you decompile the class's bytecode, you'll actually see the variable statically in the bytecode. – Jared May 20 '09 at 18:58
2  
One more note - by managing the number explicitly you get to decide when you consider versions of a class "compatible", rather than requiring the class definition to be exactly the same. – Scott Stanchfield May 21 '09 at 13:56
2  
@ Jared According to Item 75 in Josh Bloch's Effective Java: 2nd Edition: "declare an explicit serial version UID in every serializable class you write.... If no serial version UID is provided, an expensive computation is required to generate one at runtime." – ckeh Dec 17 '09 at 0:54
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.

link|improve this answer
feedback

The "long" default of the serialVersionUID is the default value as defined by the Java Serialization Specification, calculated from the default serialization behaviour.

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 1L there and increment the version as needed when something changes. That is, when the default serialisation version of the changed class would be different from the default version of the old class.

link|improve this answer
feedback

You absolutely should create a serialVersionUID every time you define a class that implements java.io.Serializable. If you don't, one will be created for you automatically, but this is bad. The auto-generated serialVersionUID is based on the method signatures of your class, so if you change your class in the future to add a method (for example), deserializing the "old" versions of the class will fail. Here's what can happen:

1. Create the first version of your class, without defining the 
serialVersionUID. 
  2. Serialize an instance of your class to a persistent store; a 
serialVersionUID is automatically generated for you. 
  3. Modify your class to add a new method, and redeploy your application. 
  4. Attempt to deserialize the instance that was serialized in step 2, but now it fails (when it should succeed), because it has a 
different auto-generated serialVersionUID. 
link|improve this answer
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.

link|improve this answer
feedback

Because in many cases default id is not unique. so we create id for making unique concept.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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