Ejemplo |
public static class SerializableObject implements Serializable{ synchronized private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); } } |
Solución | |
Declare readObject() sin el modificador synchronized
|