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
- Android
- jpa
- http
- Servlet
- Greedy
- Thymeleaf
- Exception
- kotlin
- 백준
- db
- 김영한
- transaction
- AOP
- 알고리즘
- pointcut
- Proxy
- 그리디
- Spring Boot
- java
- 자바
- SpringBoot
- 스프링 핵심 원리
- JPQL
- 스프링 핵심 기능
- JDBC
- 스프링
- springdatajpa
- QueryDSL
- 인프런
- spring
Archives
- Today
- Total
개발자되기 프로젝트
결과 조회 본문
1. query 결과 조회 방법
- fetch의 사전적 의미 : 가져오다.
- fetch() : 리스트 조회, 데이터 없으면 빈 리스트 반환
- fetchOne() : 단 건 조회
- 결과가 없으면 : null
- 결과가 둘 이상이면 : com.querydsl.core.NonUniqueResultException
- fetchFirst() : limit(1).fetchOne()
- fetchResults() : 페이징 정보 포함, total count 쿼리 추가 실행
- fetchCount() : count 쿼리로 변경해서 count 수 조회
2. 예제
- fetchResults()의 경우 getResults()를 통해 contents를 꺼낼 수 있음.
@Test
public void resultFetch(){
List<Member> fetch = queryFactory
.selectFrom(member)
.fetch();
Member fetchOne = queryFactory
.selectFrom(QMember.member)
.fetchOne();
Member fetchFirst = queryFactory
.selectFrom(QMember.member)
.fetchFirst();
QueryResults<Member> result = queryFactory
.selectFrom(member)
.fetchResults();
result.getTotal();
List<Member> content = result.getResults();
long count = queryFactory
.selectFrom(member)
.fetchCount();
}
3.GitHub : 210901 Result
'인프런 > [인프런] QueryDsl' 카테고리의 다른 글
페이징 (0) | 2021.09.01 |
---|---|
정렬 (0) | 2021.09.01 |
검색조건 쿼리 (0) | 2021.09.01 |
기본 Q-Type (0) | 2021.09.01 |
Querydsl vs JPQL (0) | 2021.09.01 |
Comments