Spring Boot에서 @ModelAttribute를 사용하여 Query String을 DTO(PostSearchOptions)에 바인딩할 때, 값이 매핑되지 않는 문제가 발생했습니다.문제 상황: Query String이 PostSearchOptions에 매핑되지 않음예를 들어, 다음과 같은 컨트롤러가 있다고 가정해봅시다.@GetMapping("/list")public ResponseEntity> getAllPostsWithSearchOptionsByPage( Pageable pageable, @ModelAttribute PostSearchOptions postSearchOptions // 🔥 Query String → 객체 매핑) { return ResponseEntity.ok( ..