[실전! 스프링 부트와 JPA 활용 2 - API 개발과 성능 최적화] API 개발 고급(3): 컬렉션 조회 최적화(2)
·
Back-End/JPA
[작성일: 2023. 10. 05] 컬렉션 조회 최적화(2)주문 조회 V4: JPA에서 DTO 직접 조회@RestController@RequiredArgsConstructorpublic class OrderApiController { private final OrderRepository orderRepository; private final OrderQueryRepository orderQueryRepository; // ... 코드생략 @GetMapping("/api/v4/orders") public List ordersV4(){ return orderQueryRepository.findOrderQueryDtos(); }} @Datapublic class O..