DEV Community

Rajesh Mishra
Rajesh Mishra

Posted on

Spring Transaction Management | Spring boot

Today we will learn about spring transaction management with the help of spring boot. Let’s learn some basics of spring transaction management.

Spring_Transaction_Management

Actually Transaction defines ACID properties.

  1. Atomicity – All success or none.
  2. Consistency – Database constraints should not be violated.
  3. Isolation – One transaction should not affect another one.
  4. Durability – It should in Database after commit.

Two-way we can manage Spring Transaction Management:

    1. Programmatic transaction management
    2. Declarative transaction management

Programmatic transaction management:

Actually in Programmatic transaction management we generally write code for transaction management like

  1. Creating Transaction reference
  2. Begin transaction
  3. Commit or rollback of the transaction

Spring Transaction Management with complete example

Visit us for more tutorials:
Java Tutorial
Python Tutorial
RabbitMQ Tutorial
Spring boot Tutorial

Latest comments (0)