Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- JAVA Exception 종류
- spring JPA DB Connection
- docker 로그
- Data Annotation
- repository annotation
- spring mapper annotation
- mapper annotationo
- spring @mapper
- JPA DB Connection 다중
- @Builder @NoArgsConstructor
- spring DB Connection
- spring repository
- NoArgsConstructor
- spring mapper
- CrudRepository update
- vueslot
- 자바버그수정
- vuecomponent
- JpaRepository update
- 도커 컨테이너 로그
- Transactions Propagation Option
- AllArgsConstructor
- doker logs tail
- 도커 로그 확인
- JPA DB 다중 Connection
- 도커 logs
- Spring JPA Specification
- Spring
- spring JPA DB multi Connection
- Vue
Archives
- Today
- Total
목록Transactions Propagation Option (1)
개발을 잘하고 싶은 개발자
[Spring] Transactions Propagation Option with Spring JPA
출처 https://www.baeldung.com/transaction-configuration-with-jpa-and-spring https://taetaetae.github.io/2016/10/08/20161008/ propagation ( 전파옵션) REQUIRED : 부모 트랜잭션 내에서 실행하며 부모 트랜잭션이 없을 경우 새로운 트랜잭션을 생성 REQUIRES_NEW : 부모 트랜잭션을 무시하고 무조건 새로운 트랜잭션이 생성 SUPPORT : 부모 트랜잭션 내에서 실행하며 부모 트랜잭션이 없을 경우 nontransactionally로 실행 MANDATORY : 부모 트랜잭션 내에서 실행되며 부모 트랜잭션이 없을 경우 예외가 발생 NOT_SUPPORT : nontransactionally로 실행하..
Backend/spring
2021. 8. 18. 23:52