交易的意义是什么?
我一直在阅读有关 "Java Transaction" 的内容,但我一直对它是什么感到困惑?有什么用处?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我一直在阅读有关 "Java Transaction" 的内容,但我一直对它是什么感到困惑?有什么用处?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以通过谷歌搜索并找到如下页面: http://www.java-tips.org/java-ee-tips/enterprise-java-beans/introduction-to-the-java-transactio.html
但底线是:事务是一组必须全部成功或全部失败并被逆转(回滚)的操作。
明显的例子是银行业:如果您将钱从储蓄转至支票,则两次更新最好都发生,或者都不发生,否则会出现错误。
You can google around and find pages like this: http://www.java-tips.org/java-ee-tips/enterprise-java-beans/introduction-to-the-java-transactio.html
but the bottom line is: a transaction is a set of operations which must all succeed or all fail and be reversed (rolled back).
The obvious example is banking: if you transfer money from savings to checking, both updates had better occur, or neither, otherwise there will be an error.
我想说最好的起点是:
http://en.wikipedia.org/wiki/Transaction_processing
http://en.wikipedia.org/wiki/ACID
谢谢,
镍丁
I would say the best place to start are:
http://en.wikipedia.org/wiki/Transaction_processing
http://en.wikipedia.org/wiki/ACID
Thanks,
Nitin