Serialization - wasn't using serialVersionUID.....
Hey all. I have a bit of a pickle. I have some objects that implement serialization. The class description hasn't changed for a very long time and I'm currently not having any problems with them. They do not implement a serialVersionUID.
I thought I read somewhere that different JVM implementations may see my class and serialization stream differently causing the objects to no longer be able to be de-serialized.
I'm opening up my app to a wider audience and want to implement the serialVersionUID but doing so will screw the current users of the objects. Not doing so may screw future users of the objects.
Any thoughts?
Thanks
ST

