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
- 스프링
- 김영한
- 알고리즘
- transaction
- JPQL
- Thymeleaf
- Servlet
- 그리디
- springdatajpa
- Exception
- Proxy
- 인프런
- jpa
- Spring Boot
- spring
- AOP
- java
- db
- Android
- QueryDSL
- kotlin
- Greedy
- http
- 스프링 핵심 기능
- SpringBoot
- JDBC
- pointcut
- 스프링 핵심 원리
- 백준
- 자바
Archives
- Today
- Total
목록@DynamicUpdate (1)
개발자되기 프로젝트
Dirtycheck, 성능이슈
@Service public class CommentService { @Autowired private CommentRepository commentRepository; @Transactional public void innit(){ for(int i=0; i dirty check가 존재하지 않는다!! 2. Dirty Check : Insert insert에 대한 method도 만들어주자. @Transactional public void insertSomething(){ Comment comment = new Comment(); comment.setComment("뭐하는거냐고지그으으음음"); } @Test void commentTest(){ commentService.innit(); //commentRe..
JPA/Trouble shooting
2021. 7. 12. 00:37