- 浏览: 5144 次
- 性别:
- 来自: 上海
最新评论
-
blowfisher:
由容器提供的事务管理,是达不到细粒度的行级锁需求的, 这个跟底 ...
spring配置事务,是否可以实现行级锁(for update) -
Godlikeme:
select * from table where id =1 ...
spring配置事务,是否可以实现行级锁(for update)
文章列表
spring配置事务,是否可以实现行级锁(for update)
通过配置传播行为,隔离级别应是不行的把?
我现在的做法是在dao里面直接用悲观锁来弄的
觉的这样太好,如果这个查询方法有时候需要实现行级锁有时候不需要我是否还要写两个不同的方法
比如我每次
select * from table where id=1
取一条商品信息,然后扣款,配送,最后把这个条记录修改为已卖出。
为了防止脏读导致通过select * from table where rownum=1 for update行级锁定
但同时也需要用户可以通过
select * from table where id=1来查询 ...