When serialising an Object, if it has a serial identifier it will be used, otherwise it will be generated.
If the serial identifier is missing and the javac option -Xlint is specified, a warning will be generated. This warning can be muted with @SuppressWarnings("serial"). The purpose of this annotation is just to suppress the warning, it will not interfere in any other way with the serialisation.
From Serializable Javadoc:
The serialization runtime associates with each serializable class a version number, called a serialVersionUID, which is used during deserialization to verify that the sender and receiver of a serialized object have loaded classes for that object that are compatible with respect to serialization.
and also:
If a serializable class does not explicitly declare a serialVersionUID, then the serialization runtime will calculate a default serialVersionUID value for that class based on various aspects of the class, as described in the Java(TM) Object Serialization Specification. However, it is strongly recommended that all serializable classes explicitly declare serialVersionUID values, since the default serialVersionUID computation is highly sensitive to class details that may vary depending on compiler implementations, and can thus result in unexpected InvalidClassExceptions during deserialization.
Example: serialising a class with @SuppressWarnings("serial")
Test.java : the class to be serialised
import java.io.Serializable;
@SuppressWarnings("serial")
class Test implements Serializable {
int a = 0;
public Test() {
}
public Test(int arg) {
a = arg;
}
}
Writer.java : the class that writes an instance of Test to the file test.serial
import java.io.*;
class Writer {
public static void main(String[] args) {
Test t = new Test(2);
String filename = "test.serial";
try {
FileOutputStream fos = new FileOutputStream(filename);
ObjectOutputStream out = new ObjectOutputStream(fos);
out.writeObject(t);
out.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}