79636887

Date: 2025-05-24 15:05:53
Score: 1
Natty:
Report link

@ParameterObject is the answer:

    import org.springdoc.core.annotations.ParameterObject;
    
    // ...    

    @GetMapping
    public ResponseEntity<List<UserResponseDto>> findUsers(@ParameterObject FindUserRequestDto userRequestDto) {
        // ...
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): is the answer
Posted by: Sergey Zolotarev