I want to change the packages of multiple classes in my application.
A nice eclipse redactor good have been great but some of my classes are Serializables and I need to support cross version compatibility.
Any Idea on how it can be done?
Can it be done automatically/semi-automatically?
If the class structure remains the same, you can subclass a custom ObjectInputStream, call
enableResolveObject(true)in its constructor and then overridereadClassDescriptor()with something like that: