Eclipse/myeclipse Generating Serialversionuid method

Source: Internet
Author: User
Tags serialization

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

If you have a serialization error after modifying your code redeployment, consider adding the Serialversionuid field to the corresponding class.

There are generally two ways to build:
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;

Here is a simple way to generate serialversionuid with Eclipse/myeclipse.

For example, a visitor table needs to be added Serialversionuid


Take Test.java as an example, first interface implements Serializable




When using the Eclipse/myeclipse IDE, a yellow exclamation mark will appear on the left, click on this yellow exclamation mark


Select the first item to add the generated serial version identity, then the Eclipse/myeclipse IDE generates a serialversionuid, which is done.

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.