A previous developer saved serialized objects to a number of different databases. Each time some development work was done before deploying to the new location. The serialVersionUID was left dynamic so each database has different object versions (Though similar enough that casting with a static serial id works).
I've been tasked with updating old sites with the new features. Reading and writing the serialized objects is quite a pain. I would really like to normalize them. These objects are deeply nested and polymorphic. Getting raw data and transcoding would be quite the task. Is there a fast way of normalizing the objects to a static serial id?