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 |
Tags
- 1차원 DP
- 2차원 dp
- 99클럽
- @BeforeAll
- @BeforeEach
- @Builder
- @Entity
- @GeneratedValue
- @GenericGenerator
- @NoargsConstructor
- @Query
- @Table
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- api gateway 설계
- api gateway 필터
- ApplicationEvent
- assertThat
- async/await
- AVG
- AWS
- aws eks
- AWS 프리티어
- Azure
- bind
- bitnami kafka
Archives
- Today
- Total
목록대용량-페이징 (1)
기록
QueryDSL로 중첩 DTO를 조회하는 방법
시작점최근에 영화관 서비스의 관리자 화면 API를 설계하면서 이런 요구사항이 생겼다.영화 상세 정보를 조회할 때, 해당 영화의 상영 일정 리스트를 함께 내려주자.예를 들어, MovieInfoDetailDto 라는 DTO 안에 List가 포함된 구조다.public class MovieInfoDetailDto { private Long movie_id; private String title; private String description; private Long movie_info_id; private LocalDate releaseDate; private String director; private List schedules;}내가 처음 든 생각은 "QueryDSL로..
Web/Spring
2025. 3. 27. 23:00