欢迎来到天天文库
浏览记录
ID:36277125
大小:601.00 KB
页数:11页
时间:2019-05-08
《a12持久化对象生命周期》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、持久化对象生命周期课程代码:课程介绍目的:掌握持久化对象的生命周期,Session对象的“脏”数据检查,Session接口的核心方法内容:讲解持久化对象的生命周期,Session对象的“脏”数据检查和Session接口中的几个核心方法的使用重点:持久化对象的生命周期难点:Session对象的“脏”数据检查持久化对象生命周期的状态Transient状态Guestbookgb=newGuestbook();gb.setName(“刘备");gb.setEmail(“liubei@163.com");gb.setPhone("0
2、1082502282");gb.setCreatedTime(newjava.util.Date());gb.setTitle("我喜欢这个网站");Persistent状态Sessionsession=HibernateSessionFactoryUtil.getSessionFactory().getCurrentSession();Transactiontx=session.beginTransaction();Guestbookgb=newGuestbook();gb.setName(“刘备");gb.setEm
3、ail("liubei@163.com");gb.setPhone("01082502282");gb.setCreateTime(newjava.util.Date());gb.setTitle("我喜欢这个网站");session.save(gb);Detached状态Sessionsession=HibernateSessionFactoryUtil.getSessionFactory().getCurrentSession();Transactiontx=session.beginTransaction();Gu
4、estbookgb=(Guestbook)session.get(Guestbook.class,newInteger(1));tx.commit();session.close();gb.setName(“张飞");Removed状态Sessionsession=HibernateSessionFactoryUtil.getSessionFactory().getCurrentSession();Transactiontx=session.beginTransaction();Guestbookgb=(Guestboo
5、k)session.get(Guestbook.class,newInteger(1));session.delete(gb);tx.commit();Session对象的“脏”数据检查Persistent状态的对象受Session的管理,我们对对象的属性值的修改,在Session对象调用close()方法或者Transaction对象执行commit()方法之后,数据库中对应的数据也会跟着进行同步更新Sessionsession=HibernateSessionFactoryUtil.getSessionFactory(
6、).getCurrentSession();Transactiontx=session.beginTransaction();Guestbookgb=(Guestbook)session.get(Guestbook.class,newInteger(1));gb.setName(“张飞");gb.setPhone("01082502282");tx.commit();Session接口的核心方法saveOrUpdate()方法Sessionsession=HibernateSessionFactoryUtil.getSe
7、ssionFactory().getCurrentSession();Transactiontx=session.beginTransaction();Guestbookgb=(Guestbook)session.get(Guestbook.class,newInteger(1));tx.commit();gb.setName(“张飞");session=HibernateSessionFactoryUtil.getSessionFactory().getCurrentSession();tx=session.begi
8、nTransaction();session.saveOrUpdate(gb);tx.commit();本章小结本章先讲解了Hibernate生命周期的基本概念,接着详细讲解了Hibernate生命周期中几个状态,以及这些状态之间如何进行转换。最后还详细讲解了Session接口中主要核心方法的使用。思考
此文档下载收益归作者所有