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
- Proxy
- 스프링
- Android
- 백준
- Thymeleaf
- Exception
- spring
- AOP
- http
- kotlin
- Spring Boot
- 인프런
- 자바
- QueryDSL
- 그리디
- SpringBoot
- jpa
- java
- db
- Servlet
- 스프링 핵심 기능
- 알고리즘
- pointcut
- Greedy
- JDBC
- springdatajpa
- 김영한
Archives
- Today
- Total
목록벌크연산 주의 (1)
개발자되기 프로젝트
벌크 연산
1. 쿼리 한번으로 대량 데이터 수정 : 벌크 연산 벌크연산은 영속성 컨텍스트를 거치지 않고 바로 DB에 반영함 즉 벌크연산 후 영속성 컨텍스트와 DB가 다르다. 벌크 연산 후 영속성 컨텍스트를 초기화 해주자. @Test public void bulkUpdate(){ /** * member1 = 10 -> 비회원 * member2 = 20 -> 비회원 * member3 = 30 -> 유지 * member4 = 40 -> 유지 */ long count = queryFactory .update(member) .set(member.username, "비회원") .where(member.age.lt(28)) .execute(); em.flush(); em.clear(); } update Member member..
인프런/[인프런] QueryDsl
2021. 9. 4. 00:10