序列化、监听、自定义注解

  1. 分别使用jdk,protobuf,json序列化反序列化一个特定类的对象
// jdk
// 序列化
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("E:\\Person.txt"));
    Person person = new Person();
    //调用写对象的方法writeObject
    oos.writeObject(person);
	oos.flush();
    oos.close();

// 反序列化
FileInputStream fis = new FileInputStream("E:\\Person.txt");
ObjectInputStream ois = new ObjectInputStream(fis);
Object o = ois.readObject();
System.out.println(o);
fis.close();
ois.close();
//protobuf
// 序列化
DataInfo.Student student = DataInfo.Student.newBuilder()
                .setName("xxxx").setAge(100).setAddress("中国").build();
byte[] bytes = student.toByteArray();                
               
// 反序列化
DataInfo.Student student1 = DataInfo.Student.parseFrom(bytes);

// 将Java对象序列化为Json字符串  
 String objectToJson = JSON.toJSONString(initUser());  
 System.out.println(objectToJson);  
 // 将Json字符串反序列化为Java对象  
 User user = JSON.parseObject(objectToJson, User.class);  
 System.out.println(user);  
  1. 基于guava框架中事件总线@Listener注解实现具体事件的监听

@Service
public class EventListener {

    @org.springframework.context.event.EventListener
    public void onSynMsgEvent(CreateMsgEvent event){
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    @Async
    @org.springframework.context.event.EventListener
    public void onAsynMsgEvent(CreateMsgEvent event){
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}
  1. 应用启动时识别spring bean实例中标记有@Counter的方法
import java.lang.annotation.*;

@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Counter{
    boolean value() default true;
}

public class BeanFactory {

    /**
     * 任务一:读取解析xml,通过反射技术实例化对象并且存储待用(map集合)
     * 任务二:对外提供获取实例对象的接口(根据id获取)
     */
    private static Map<String, Object> map = new HashMap<>();  // 存储对象

    static {
        try {
            //任务一、扫描包,通过反射技术实例化对象并且存储待用(map集合)

            //通过反射技术,扫描包并获取反射对象集合
            Reflections edus = new Reflections("com.lagou.edu");
            Set<Class<?>> clazzs = edus.getTypesAnnotatedWith(Counter.class);
            //遍历对象集合
            for (Class<?> clazz : clazzs) {
                // 获取实例化对象
                Object object = clazz.getDeclaredConstructor().newInstance();
                Counter service = clazz.getAnnotation(Counter.class);

                //判断Service注解上是否有自定义对象ID
                if (StringUtils.isEmpty(service.value())) {
                    //由于getName获取的是全限定类名,所以要分割去掉前面包名部分
                    String[] names = clazz.getName().split("\\.");
                    map.put(names[names.length - 1], object);
                } else {
                    map.put(service.value(), object);
                }
            }
       } catch (Exception e) {
            e.printStackTrace();
        }
    }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值