Eclipse WARNING: The serializable class XXX does not declare a static final serialversionuid field of type long

Source: Internet
Author: User

Serialversionuid Effect:
Serialization preserves the uniqueness of the object in order to maintain version compatibility, that is, deserialization while the version is being upgraded.

can be generated automatically in eclipse, there are two ways to build it:
One is the default 1L, for example: private static final long serialversionuid = 1L;
One is to generate a 64-bit hash field based on the class name, interface name, member method, and property, for example: private static final long Serialversionuid = -8940196742313994740l.

When you implement the serializable interface in a class, if there is no definition serialversionuid,eclipse will provide this hint function to tell you to define it.
If you don't want to define it, turn it off in Eclipse settings, set up as follows:
Window ==> Preferences ==> Java ==> Compiler ==> error/warnings ==> Potential programming problems
Change the warning of the serializable class without serialversionuid to ignore.

Eclipse WARNING: The serializable class XXX does not declare a static final serialversionuid field of type long

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.