码迷,mamicode.com
首页 > Web开发 > 详细

Hibernate学习

时间:2018-03-21 17:33:41      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:tran   持久化   zh-cn   post   nat   运行   res   映射   cti   

Hibernate运行过程:

1.通过Configuration().configure();读取并解析hibernate.cfg.xml配置文件

2.由hibernate.cfg.xml中的<mappingresource="com/xx/User.hbm.xml"/>读取并解析映射信息

3.通过config.buildSessionFactory();//创建SessionFactory

4.sessionFactory.openSession();//打开Sesssion

5.session.beginTransaction();//创建事务Transation

6.persistent operate持久化操作 //一般指Save这个方法

7.session.getTransaction().commit();//提交事务

8.关闭Session

9.关闭SesstionFactory

Hibernate学习

标签:tran   持久化   zh-cn   post   nat   运行   res   映射   cti   

原文地址:https://www.cnblogs.com/imaye/p/8618053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!