java序列号 SerializeUID

java 序列号主要用于序列化和反序列化的识别,假设客户端C和服务端S原来使用同一个类A进行通信,C因为需求要加上一个新字段b,如果没有序列号做保证,二者之间就无法正常通信了,S收到C的序列化后的A请求,就会抛出InvalidClassException异常,如下代码line1注释,但是当加上序列号之后,如下代码line1打开,新加的字段为null。


原理和用法很简单,以下是测试代码,修改line1~4就可看到序列化id的作用。



import java.io.*;

/**
 * @author : zhongxiankui
 */
public class SerializeUIDTest {
    
    /**
     * <p>Description: Customer实现了Serializable接口,可以被序列化<p>
     */
    private static class Customer implements Serializable {
        
//        private static final long serialVersionUID = 1936056658480287561L; line1
        //Customer类中没有定义serialVersionUID
        private String name;
        private int age;
        private String salary;
        private String salary1;
        
        public Customer(String name, int age) {
            this.name = name;
            this.age = age;
        }
        
        /*
         * @MethodName toString
         * @Description 重写Object类的toString()方法
         * @author xudp
         * @return string
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString() {
            return "name=" + name + ", age=" + age + ", salary=" + salary;
        }
        
        
        public static void main(String[] args) throws Exception {
//            SerializeCustomer();// 序列化Customer对象 line2
            Customer customer = DeserializeCustomer();// 反序列Customer对象 line3
            System.out.println(customer);//line4

        }
        
        /**
         * MethodName: SerializeCustomer
         * Description: 序列化Customer对象
         *
         * @throws FileNotFoundException
         * @throws IOException
         * @author xudp
         */
        private static void SerializeCustomer() throws FileNotFoundException,
                IOException {
            Customer customer = new Customer("gacl", 25);
            // ObjectOutputStream 对象输出流
            ObjectOutputStream oo = new ObjectOutputStream(new FileOutputStream(
                    new File("./Customer.txt")));
            oo.writeObject(customer);
            System.out.println("Customer对象序列化成功!");
            oo.close();
        }
        
        /**
         * MethodName: DeserializeCustomer
         * Description: 反序列Customer对象
         *
         * @return
         * @throws Exception
         * @throws IOException
         * @author xudp
         */
        private static Customer DeserializeCustomer() throws Exception, IOException {
            ObjectInputStream ois = new ObjectInputStream(new FileInputStream(
                    new File("./Customer.txt")));
            Customer customer = (Customer) ois.readObject();
            System.out.println("Customer对象反序列化成功!");
            return customer;
        }
    }
    
    
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
public synchronized String nextId() { long timestamp = timeGen(); //获取当前毫秒数 //如果服务器时间有问题(时钟后退) 报错。 if (timestamp < lastTimestamp) { throw new RuntimeException(String.format( "Clock moved backwards. Refusing to generate id for %d milliseconds", lastTimestamp - timestamp)); } //如果上次生成时间和当前时间相同,在同一毫秒内 if (lastTimestamp == timestamp) { //sequence自增,因为sequence只有12bit,所以和sequenceMask相与一下,去掉高位 sequence = (sequence + 1) & sequenceMask; //判断是否溢出,也就是每毫秒内超过4095,当为4096时,与sequenceMask相与,sequence就等于0 if (sequence == 0) { timestamp = tilNextMillis(lastTimestamp); //自旋等待到下一毫秒 } } else { sequence = 0L; //如果和上次生成时间不同,重置sequence,就是下一毫秒开始,sequence计数重新从0开始累加 } lastTimestamp = timestamp; long suffix = (datacenterId << datacenterIdShift) | (workerId << workerIdShift) | sequence; String datePrefix = DateFormatUtils.format(timestamp, "yyyyMMddHHMMssSSS"); return datePrefix + suffix; } protected long tilNextMillis(long lastTimestamp) { long timestamp = timeGen(); while (timestamp <= lastTimestamp) { timestamp = timeGen(); } return timestamp; } protected long timeGen() { return System.currentTimeMillis(); } private byte getLastIP(){ byte lastip = 0; try{ InetAddress ip = InetAddress.getLocalHost(); byte[] ipByte = ip.getAddress(); lastip = ipByte[ipByte.length - 1]; } catch (UnknownHostException e) { e.printStackTrace(); } return lastip; }

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值