JPA Lazy Loading이 Spring boot에서 작동하지 않습니다. 제가 구글을 많이 검색했는데 Spring Boot(최신 버전)에 게으른 로딩이 작동하지 않을 수 있다는 것이 정말 이상합니다.다음은 내 코드의 일부입니다. 내 리소스: public ResponseEntity searchAirWaybill(CriteraDto criteriaDto, @PageableDefault(size = 10) Pageable pageable{ airWaybillService.searchAirWaybill(criteriaDto, pageable); return ResponseEntity.ok().body(result); } 내 서비스: @Service @Transactional public class AirWa..