-
-
Notifications
You must be signed in to change notification settings - Fork 534
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Im using Spring Boot Webflux, @ParameterObject is not working at all in my case.
OpenApi 3 is working properly in case of queryParameters, pathParameters, requestBody. Its not working only in case of Query Parameters that are mapped in ContainerFilters.class(by using HandlerMethodArgumentResolver in spring boot) and its not working for Pageable as well.
@Authorized
@RequestMapping(value = "", method = RequestMethod.GET)
public Flux<ContainerResResDto> getContainers(
@Include User user,
@ParameterObject @Include ContainerFilters filters,
@ParameterObject Pageable pageable) {
return containerService.getContainers(user, filters, pageable).map(ContainerResResDto::of);
}
Originally posted by @burimkrasniqi in #1324 (comment)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request