摘要:
Hibernate加载数据 Session.get(Class clazz, Serializable id) clazz:需要加载对象的类,例如:User.class id:查询条件(实现了序列化接口的对象): 返回值: 此方法返回类型为Object,也就是对象,然后我们再强行转换为需要加载的对象 阅读全文
摘要:
在hibernate中对象有三种状态:瞬时态(Transient)、 持久态(Persistent)、脱管态或游离态(Detached)。处于持久态的对象也称为PO(Persistence Object),瞬时对象和脱管对象也称为VO(Value Object)。 瞬时状态 由new操作符创建,且尚 阅读全文