hibernate
huyuminNo1
这个作者很懒,什么都没留下…
展开
-
hibernate事务
关键字: hibernate1. 介绍数据库事务、事务隔离级别、悲观锁、乐观锁等概念。2.数据库ACID特征:Atomic(原子性):指整个数据库事务是不可分割的工作单元。Consistency(一致性):指数据库事务不能破坏关系数据的完整性以及业务逻辑上的一致性。Isolation(隔离性):指的是在并发环境中,当不同的事务同时操纵相同的数据时,每个事务都有各自的完整数据空间。Durabil...原创 2013-03-11 22:54:48 · 97 阅读 · 0 评论 -
hibernate的各种保存方式的区别 (save,persist,update,saveOrUpdte,merge,flush,lock)等
Hibernate中的merge方法挺好用的。官方文档的说明如下:mergeCopy the state of the given object onto the persistent object with the same identifier. If there is no persistent instance currently associated with the ses...原创 2012-10-15 10:38:54 · 182 阅读 · 0 评论 -
hibernate vs ibatis
IBATIS:iBATIS一词来源于“internet”和“abatis”的组合,是一个由Clinton Begin在2001年发起的开放源代码项目,最初侧重于密码软件的开发,现在是一个基于Java的持久层框架。iBATIS提供的持久层框架包括SQL Maps和Data Access Objects(DAO),同时还提供一个利用这个框架开发的JPetStore实例,相对Hibernate和...原创 2013-02-17 09:22:07 · 93 阅读 · 0 评论