Do I need to put a serialVersionUID on ancestors of a Serializable class? Or just on the Serializable class itself?
|
|
|||||||||
|
|
You do not need to put a serialVersionUID at all. Java will automatically determine an appropriate serial id for your classes based on fields, methods, etc. The only appropriate time to have serialVersionUIDs is when you will be storing your objects into a file and will need to load them later, even after you have changed your code. Or, if you will be transferring data across the wire between components that are using different versions of your library. 90% of the time that people need serialization, it is real-time, and library version matching on both sides is guaranteed. In these cases, you do not need to set a serialVersionUID, and it can actually cause problems, if you have two library versions that are incompatible but you have not changed the sID. You will start getting weird errors since Java thinks they're serially compatible, when actually, they're not. Look at these questions as well: Is there a reason to use a real serialVersionUID? Why generate long serialVersionUID instead of a simple 1L? Why should I bother about serialVersionUID? Edit to add: As for the original question, no you don't need to worry about your ancestors. Just the serialVersionUID will tell Java if its compatible. However, if the ancestor changed, and your serialVersionUID did not change, it may not be compatible even though you are saying it is. Another reason why you shouldn't be setting it at all. |
|||||||||||||||
|