Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the meaning of Transaction?

Tags:

jakarta-ee

jta

I've been reading about "Java Transaction" , and i've been confused about what's it? and what's useful in?

like image 782
MineIsMine Avatar asked Apr 30 '11 22:04

MineIsMine


1 Answers

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.

like image 91
Scott C Wilson Avatar answered Oct 11 '22 02:10

Scott C Wilson