1

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

The serializable class VaadintestprojectApplication does not declare a static final serialVersionUID field of type long

  1. What does this statement mean? I get an error for this.
  2. What does serizlizable class do and why do we need to declare a static final for it.
Community
  • 1
  • 1
theJava
  • 14,620
  • 45
  • 131
  • 172

1 Answers1

3

You should take a look at Serializable javadoc, which explains this far better than any StackOverflow contributor.

Riduidel
  • 22,052
  • 14
  • 85
  • 185