Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

134
votes
8answers
24k views

Why should I bother about serialVersionUID?

Eclipse always warns me about serialVersionUID. What is this, and is this a matter of high importance? Is there any example where missing serialVersionUID will cause a problem?
25
votes
11answers
7k views

Use the serialVersionUID or suppress warnings?

first thing to note is the serialVersionUID of a class implementing Interface Serializable is not in question. What if we create a class that for example extends HttpServlet? It also should have a ...
20
votes
2answers
3k views

Should an abstract class have a serialVersionUID

In java, if a class implements Serializable but is abstract, should it have a serialVersionUID long declared, or do the subclasses only require that? In this case it is indeed the intention that all ...
20
votes
7answers
8k views

Why generate long serialVersionUID instead of a simple 1L?

When class implements Serializable in Eclipse, I have two options: add default serialVersionUID(1L) or generated serialVersionUID(3567653491060394677L). I think that first one is cooler, but many ...
12
votes
6answers
1k views

explicit serialVersionUID considered harmful?

I am probably risking some downvotes on this. It seems to me that explicitly specifying serialVersionUID for new classes is bad. Consider the two cases of not changing it when layout has it should ...
11
votes
5answers
13k views

What does it mean: The serializable class does not declare a static final serialVersionUID field?

I have the warning message given in the title. I would like to understand and remove it. I found already some answers on this question but I do not understand these answers because of an overload with ...
9
votes
2answers
151 views

Why would the Java compiler create a serialVersionUID synthetic field?

As part of debugging an application, I noticed that Field.getDeclaredFields() returns some synthetic fields, including a serialVersionUID field in a class extending an interface, although none extend ...
7
votes
4answers
2k views

How to deserialize an object persisted in a db now when the object has different serialVersionUID

My client has an oracle data base and an object was persisted as a blob field via objOutStream.writeObject, the object now has a different serialVersionUID (even though the object has no change, maybe ...
5
votes
2answers
2k views

Eclipse auto-generation of serialVersionUID with each change

Eclipse nicely generates the serialVersionUID for me. But this seems to be passive code generation as the id won't be automatically updated as I change the file unless I do the generation again. Is ...
5
votes
6answers
1k views

Finding serialVersionUID of serialized object

Is there a way to determine the generated serialVersionUID of a serialized Java object? The problem is that I serialized an object without explicitely specifying the serialVersionUID. Now the ...
3
votes
4answers
118 views

Isn't suppressing warnings better option than adding serialVersionUID in this scenario?

A common scenario in web applications: application has lots of classes that need to be stored in Session and are Serializable developer gets a bunch of warnings about "Serializable class does not ...
3
votes
4answers
857 views

If I change the base class that a Java Exception class extends, do I need to update the serialVersionUID value?

Consider the following Java exception classes: public class BarException extends RuntimeException { // [...] } public class FooException extends BarException { private static final long ...
2
votes
3answers
148 views

What is serialVersionUID in java, normally in exception class? [closed]

Possible Duplicate: Why should I bother about serialVersionUID? I am going through some exception handling code and i saw something named as serialVersionUID. What this uid is for?? Is it ...
2
votes
2answers
209 views

scala class serialization, impossible to fix SerialVersionUID

I'm currently testing remote actors to communicate between Android and Windows. Actors remote sends differents classes where I set the serialVersionUID. This is the code of my serialized class: ...
2
votes
2answers
750 views

auto generation of serial version uid using maven2 plugin

Is there a maven plugin which automatically calculates and updates serial version uid for all java class files implementing the Serializable interface?
2
votes
3answers
770 views

Will adding a method change the java-calculated serialVersionUid on my class?

If I have a class like this: public class Name implements Serializable { private final String firstName; private final String lastName; public Name(String firstName, String lastName) { ...
1
vote
2answers
127 views

serialVersionUID no longer required from Java 5 onwards?

I recently read a comment saying that usage of serialVersionUID to make different versions of the same class compatible for serialization/deserialization is no longer needed from Java 5 onwards. Is ...
1
vote
1answer
467 views

Cant understand my java.io.InvalidClassException: javax.swing.JComponent

I am using serialization to communicate with my server.this way My applet retrieves a JTree created in the server. In eclipse and appletViewer my applet works perfectly but when I try to launch my ...
1
vote
1answer
182 views

What is the purpose of using serialVersionUID here? [closed]

Possible Duplicate: Why should I bother about serialVersionUID? I was examining the Struts2 validation documentation. Even here it is defined: private static final long serialVersionUID = ...
1
vote
1answer
247 views

Pickled Object Versioning

I am working on a project where we have a large number of objects being serialized and stored to disk using pickle/cPickle. As the life of the project progresses (after release to customers in the ...
1
vote
1answer
146 views

Reflection a list of object which is serializable

I have asked a question in : reflect a list object I actually got my answer just want to understand why when do this I will hits illegalArgumentException : Can not set static final ArrayList ...
1
vote
5answers
914 views

Make Java runtime ignore serialVersionUIDs?

I have to work with a large number of compiled Java classes which didn't specify explicitly specify a serialVersionUID. Because their UIDs were arbitrarily generated by the compiler, many of the ...
1
vote
4answers
3k views

Can NetBeans generate an automatic serial version ID for a Java class?

I would like to remove some warnings for some classes by generating an automatic serial version ID. In Eclipse, this is trivial to do - the IDE can generate one automatically and add it to the class. ...
1
vote
4answers
3k views

Java - Modifying serialVersionUID of binary serialized object

A few months back I serialized a java.io.Serializable object into a file. Now I need to read the contents, but since then the serialVersionUID has changed, and now I'm getting a "class incompatible" ...
1
vote
4answers
892 views

Find which class in which jar has a given serialVersionUID

When I get a java.io.InvalidClassException, it gives me the serialVersionUID that it wants, and the serialVersionUID that it got. Is there an easy way to tell which of my dozens of jars using the ...
0
votes
2answers
64 views

Why doesn't the Hibernate generate a DDL with column for serialVersionUID?

I get this DDL (postgres target) when I add the goal hbm2ddl using the Maven plugin hibernate3-maven-plugin: create table listing ( id varchar(36) not null, hash_code int4 not null, ...
0
votes
3answers
85 views

Why my exception class needs to be serialized?

When you extend a class with class Exception ( for creating new exception) you get a warning to have a serialVersionUID. I know that serialVersionUID plays a important role while serialization and ...
0
votes
1answer
111 views

Is serialVersioUID require in Interfaces(I hope not)?

My understanding is serialVersionUID is applicable only to classes, because we can create an object only to classes and the concept of serialVersionUID is for object serialization and deserialization. ...