码迷,mamicode.com
首页 > 其他好文 > 详细

serialVersionUID 序列化

时间:2017-03-15 11:57:01      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:反序列化   spec   uid   with   result   ati   rac   exce   ase   

http://www.mkyong.com/java-best-practices/understand-the-serialversionuid/

简单来说,Java的序列化机制是通过在运行时判断类的serialVersionUID来验证版本一致性的。在进行反序列化时,JVM会把传来的字节流中的serialVersionUID与本地相应实体(类)的serialVersionUID进行比较,如果相同就认为是一致的,可以进行反序列化,否则就会出现序列化版本不一致的异常。

 

3. What’s wrong with the default serialVersionUID?

If no serialVersionUID is declared, JVM will use its own algorithm to generate a default SerialVersionUID, you can check the algorithm here.

The default serialVersionUID computation is highly sensitive to class details and may vary from different JVM implementation, and result in an unexpected InvalidClassExceptions during the deserialization process.

 

不同的JVM,可以有不同的生成算法。导致SerialVersionUID不一致。

serialVersionUID 序列化

标签:反序列化   spec   uid   with   result   ati   rac   exce   ase   

原文地址:http://www.cnblogs.com/kakaisgood/p/6553101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!