摘要: @Autowired @Autowired为Spring提供的注解,需要导入包org.springframework.beans.factory.annotation.Autowired。 @Autowired采取的策略为按照类型注入。(当类型重复的时候,用@Qualifier("userDao") 阅读全文
posted @ 2019-08-18 00:32 wullll 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 序列化是一种用来处理对象流的机制。 所谓对象流:就是将对象的内容进行流化。可以对流化后的对象进行读写操作,也可将流化后的对象传输于网络之间。 序列化是为了解决在对对象流进行读写操作时所引发的问题。 序列化的实现:将需要被序列化的类实现Serializable接口(标记接口),该接口没有需要实现的方法 阅读全文
posted @ 2019-08-18 00:14 wullll 阅读(184) 评论(0) 推荐(0) 编辑