美文网首页
hibernate工作原理

hibernate工作原理

作者: 蘋果_283e | 来源:发表于2017-04-19 19:16 被阅读0次

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

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

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

    4.Session session = sf.openSession();//打开Sesssion

    5.Transaction tx = session.beginTransaction();//创建并启动事务Transation

    6.persistent operate操作数据,持久化操作

    7.tx.commit();//提交事务

    8.关闭Session

    9.关闭SesstionFactory

    // 创建数据库事务(要么同时功要么同时失败):开发中除了查询外都要用事务,事务有四个特性:原子性、一致性、隔离性、持久性

    相关文章

      网友评论

          本文标题:hibernate工作原理

          本文链接:https://www.haomeiwen.com/subject/dyqxzttx.html