三种状态分别是
Transient(游离状态),Persistent(持久化状态),Detached(脱管状态)。
Teacher t=new Teacher();
t.setName("t12");//游离状态
t.setTitle("中级");//游离状态
t.setBrithday(new Date());//游离状态
t.setZhicheng(ZhiCheng.A);//游离状态
SessionFactory sessionFactory=new Configuration().configure().buildSessionFactory();
Session session=sessionFactory.getCurrentSession();
session.beginTransaction();
session.save(t);//持久化状态
session.getTransaction().commit();
System.out.ptintln(t.getId);//脱管状态
三种状态的区分关键在于:
a)有没有ID(没有ID一定是Transient状态)
b)ID在数据库中有没有
c)在内存中有没有(session缓存)
Transient(游离状态):内存中一个对象,没ID,缓存里没有,数据库中也没有。
Persistent(持久化状态):内存中有,缓存中有,数据库中有(ID)。
Transient(游离状态),Persistent(持久化状态),Detached(脱管状态)。
Teacher t=new Teacher();
t.setName("t12");//游离状态
t.setTitle("中级");//游离状态
t.setBrithday(new Date());//游离状态
t.setZhicheng(ZhiCheng.A);//游离状态
SessionFactory sessionFactory=new Configuration().configure().buildSessionFactory();
Session session=sessionFactory.getCurrentSession();
session.beginTransaction();
session.save(t);//持久化状态
session.getTransaction().commit();
System.out.ptintln(t.getId);//脱管状态
三种状态的区分关键在于:
a)有没有ID(没有ID一定是Transient状态)
b)ID在数据库中有没有
c)在内存中有没有(session缓存)
Transient(游离状态):内存中一个对象,没ID,缓存里没有,数据库中也没有。
Persistent(持久化状态):内存中有,缓存中有,数据库中有(ID)。
Detached(脱管状态):内存有,缓存没有,数据库有,ID。
什么是缓存?
缓存可以提高访问效率,原来的东西放在硬盘上,用东西每次都从硬盘去取,效率很低。这时候可以在内存中保留一份,要用的时候去内存里去取,所以缓存就是内存中的一块区域,里面放着一系列的我们想要提高读取效率的对象或者引用。
转载请注明出处:http://blog.csdn.net/acmman/