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 | 31 |
Tags
- json type column 생성
- 선언적 트랜잭션
- json type 활용
- jpa json type
- json type index
- 무료 인스턴스
- aws cli s3
- in memory
- jpa 환경에서 json type 활용하기
- 프리티어 인스턴스
- server mode
- spring boot 멀티모듈
- IAM이란
- h2 연동
- 멀티모듈
- 트랜잭션 전파속성
- Transactiona
- oracle cloud
- IAM MFA
- JSON type
- h2 intellij
- Jenkins
- aws cli s3 exclude directory
- AWS IAM MFA
- multi module
- Oracle Linux 8
- jenkins 배포
- mysql json type
- aws cli s3 cp
- aws cli s3 exclude folder
Archives
- Today
- Total
목록Transactiona (1)
Chris Devlog

선언적 트랜잭션 AOP를 이용해 코드 외부에서 트랜잭션의 기능을 부여해 주고 속성을 지정할 수 있게 하는 방법 @Slf4j @Service public class UserServiceImpl implements UserService { @Transactional public void add(){ try{ ... } catch(Exception e) { log.error(e.getMessage(), e); } } } 프로그램에 의한 트랜잭션 TransactionTemplate이나 개별 데이터 기술의 트랜잭션 API를 사용해 직접 코드안에서 사용하는 방법 @Slf4j @Service public class UserServiceImpl implements UserService { private Platform..
Spring Boot
2022. 9. 23. 04:12