강의

멘토링

커뮤니티

Inflearn Community Q&A

gwise's profile image
gwise

asked

Spring Boot Introduction by Example

(25) Transaction Propagation (Propagation property)

@Transactional 선언 위치

Written on

·

300

0

MyController에도 트랜잭션이 있어서 @Transactional 을 이쪽으로 옮기니 실행시 에러가 납니다. 

@Transactional 는 자식(?) 트랜잭션에만 써야 하는 건가요?

spring-boot

Answer 1

1

java님의 프로필 이미지
java
Instructor

전파속성은 트랜잭션A에서 트랜잭션B에게 트랜잭션 속성이 어떻게 전해진다 라는 개념인데

전 수업시간에 트랜잭션B가 트랜잭션A에 참여하는 조건이라고 설명을 합니다.

그러므로 @Transactional는 상위 트랜잭션에 포함되는 하위 트랜잭션에만 설정이 가능합니다.

gwise's profile image
gwise

asked

Ask a question