Say I have class A in server side with two variables.
class A implements Serializable {
public static final long serialVersionUID = 1234;
String a;
String b;
}
In client side I have same class with three variables but same version id.
class A implements Serializable {
public static final long serialVersionUID = 1234;
String a;
String b;
String c;
}
What happens here? bit confused about its behaviour.