Where do I change the setting in Eclipse so that it would generate serialVersionUID for Serializable classes?

StackOverflow https://stackoverflow.com/questions/12102269

Вопрос

I want Eclipse to generate a serialVersionUID for classes that implement Serializable.

However, my Eclipse instance does not throw me a warning or an error when I create a class that implements Serializable. Also, it does not give an suggestion about adding a generated serialVersionUID. Where do I change the required setting?

Это было полезно?

Решение

To turn on warning for Serializable class without a serialVersionID, go to Window > Preference > Java > Compiler > Errors/Warnings and search for Serializable class without a serialVersionID. Set that to Error or Warning based on your preference.

Once warning for "[class] does not declare a static final serialVersionUID field of type long" are thrown you can click on the serialization class and press CTRL + 1.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top