I don't like any of these answers so I'm thought I'd add my $0.02 -- years later.
Lets assume that it's (logically) possible to convert an old object to a new object using some clever strategy to set nonexistant fields etc etc... How do I arrange my source code?
I see two ways of handling this. First off, I recommend you should never change the serialVersionUID unless you want ClassNotFound exceptions. The second rule is to not change the types of fields but to only add or remove fields which serialization handles automagically. For example, if one file has boolean sharpTeeth; but the class doesn't have that field then it will be ignored during deserialization. If the class has the field but the file doesn't then sharpTeeth will get initialized to false.
However, serialization does not handle type changes. In terms of paws, I'd recommend adding a long pawsLong or some such and writing your code to handle the possibility of there being int paws or long pawsLong having a value. Could could write your own readObject method to do the conversion:
private void readObject(java.io.ObjectInputStream in) {
super.readObject(in);
// paws used to be an integer
if (paws != 0) {
pawsLong = paws;
}
}
If this doesn't work for you then custom serialization is the way to go. You have to start from the beginning doing this however and define custom readObject(...) and writeObject(...) methods with an internal version id. Something like:
// never change this
private static final long serialVersionUID = 3375159358757648792L;
// only goes up
private static final int INTERNAL_VERSION_ID = 2;
...
// NOTE: in version #1, this was an int
private long paws;
private void readObject(java.io.ObjectInputStream in) {
int version = in.readInt();
switch (version) {
case 1 :
paws = in.readInt();
...
case 2 :
paws = in.readLong();
...
private void writeObject(java.io.ObjectOutputStream out) {
out.writeInt(INTERNAL_VERSION_ID);
out.writeLong(paws);
...
Lastly:
Should I do deserialization in one class loader, and if that fails try using another class loader that uses an older version (and so on), or are there better ways?
I would not suggest any of these methods. Sounds very difficult to maintain.