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
- Redux
- Chakra
- hook
- test
- backend
- React
- java
- 오블완
- storybook
- JPA
- satisfiles
- component
- ReactHooks
- Spring
- tanstackquery
- 티스토리챌린지
- Gin
- typescript
- 웹애플리케이션서버
- css
- golang
- designpatterns
- go
- springboot
- react-hook-form
- frontend
- javascript
- JavaSpring
- RTK
Archives
- Today
- Total
목록JavaSpring (1)
bkdragon's log
Transactional 원리
@Transactional 은 굉장히 선언적으로 사용할 수 있다. 여기서 선언적이라는 말은 사용자가 정확한 원리를 알 필요 없이 추상화 되어있고 내부적으로 처리된다는 뜻이다.아래는 유저를 추가하고 로그를 남기는 메서드이다. @Transactional public void createUserAndLog(String userName) { // 유저 생성 User user = new User(); user.setName(userName); userRepository.save(user); // User 저장 (DB에 INSERT 실행됨) // 로그 기록 Log log = new Log(); log.setMessage(..
Java Spring
2024. 9. 24. 12:17