Spring Boot pt. 44 Transactions and @Transactional

5 months ago
8

start.spring.io
CREATE TABLE bank (
name VARCHAR(255) NOT NULL PRIMARY KEY,
balance DECIMAL(19,2) NOT NULL
);

INSERT INTO bank (name, balance) VALUES ('Peach', 100.00);
INSERT INTO bank (name, balance) VALUES ('Berry', 100.00);

In today's episode of the No BS guide to Java Spring Boot, we cover transactions, rollbacks, and the Transactional annotation.

LinkTree:
https://linktr.ee/peachezprogramming

Loading comments...