作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以在 withTransaction
内提交吗?关闭?我想在我的 Quartz
里面做这样的事情工作:
Author.withTransaction {
def author = Author.get(1)
author.staus = 'processing'
author.save()
commit // how can i do this?
// so some work here which takes 1-2 minutes
author.status = 'completed'
author.save()
}
Author
目前正在处理的 s,所以我想将状态设置为
processing
并且能够从 Controller 看到这个状态。
withTransaction
的情况下工作,但我必须有
withTransaction
那里...见
this question .
最佳答案
为了从不同的未提交事务读取值,您的数据库隔离级别必须设置为“读取未提交”,这通常表明您可能做错了什么。
你有什么理由不能把它分成单独的交易吗?一种将记录标记为“进行中”,另一种用于执行实际工作?
Author.withTransaction {
def author = Author.get(id)
author.status = 'processing'
author.save()
}
Author.withTransaction() {
def author = Author.get(id)
// do some work
author.status = 'completed'
author.save()
}
关于hibernate - 我可以在 withTransaction 闭包内提交吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17713231/
我正在尝试对 StockData 表执行 OHCL sql 查询 (SQL Server 2012)。每天有数千行添加到表中,我想获取每天的开盘价、最高价、最低价和收盘价数据。 建表sql如下:
我是一名优秀的程序员,十分优秀!