결과조회
fetch() : 리스트를 조회(데이터 없으면 빈 리스트를 반환한다.)
fetchOne() : 하나를 조회(결과가 없으면 null을 가져오고, 둘이상이면 com.querydsl.core.NonUniqueResultException을 터트린다.)
fetchFirst() : limit(1).fetchOne()
fetchResults() : 페이징 정보를 포함하여 total count 쿼리를 추가적으로 실행한다.
fetchCount() : count 쿼리로 변경하여 count의 갯수를 조회한다.
'Back End > Spring Boot' 카테고리의 다른 글
Spring Boot 구조 (0) | 2024.06.24 |
---|---|
SpringBoot의 세가지 Annotation(@SpringBootConfiguration, @ComponentScan, @EnableAutoConfiguration) (0) | 2024.06.24 |
JPQL 검색조건 (0) | 2024.04.15 |
Querydsl dependency 추가방법 (0) | 2024.04.09 |
Spring Actuator 스프링 액츄에어터 (0) | 2024.03.17 |