Need of Transaction API in Java

263 Views Asked by At

First of all my question is What is the need of Transaction API in java ? Give me the practical example?

What is the meaning for Container Managed Transaction and Bean Managed Transaction?

And Difference between Declarative Transaction and Programmatic Transaction?

Please help me

Thanks in advance

2

There are 2 best solutions below

0
On

Container managed transaction and bean managed transaction, i guess you are referring to Enterprise JavaBean? From my understanding, container managed transaction will not require the developer to explicitly write codes or constructs to manage the transaction, analogous to auto-commits for database.

0
On

Declarative transaction: you put the transaction declarative in the method declaration. so you doesn't need to implement the transaction manually. Here I give you the example:

// declarative
@Transcational
public void Transfer (Account from, Account destination, double amount) {
//do your logic here
}

// programmatic
public void Transfer (Account from, Account destination, double amount) {
    var session = sessionFactory.openSession();
    var tx = session.BeginTransaction();

    try {
        //do you logic here
        tx.Commit();
    } catch {
        tx.Rolback();
    }
}