You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 기존 Page 인터페이스의 직렬화 문제로 인해 스프링 부트 3.3부터 추가된 WARNING `Serializing PageImpl instances as-is is not supported, meaning that there is no guarantee about the stability of the resulting JSON structure!`
- `@EnableSpringDataWebSupport(pageSerializationMode = VIA_DTO)` 옵션을 적용해 직렬화를 적용할 수 있지만, 응답 데이터가 일부 누락되는 것을 확인
- 직접 페이징 응답 전용 DTO를 구현함으로써 해결
0 commit comments