We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce the behavior:
edit this CarController and run test for it
package test.org.springdoc.api.app2 @RestController class CarController { test.org.springdoc.api.app2.CarService carService CarController(test.org.springdoc.api.app2.CarService carService) { this.carService = carService } @GetMapping(path = '/cars') List<test.org.springdoc.api.app2.Car> getCars(@ParameterObject CarsFilter filter) { return carService.getCars() } static class CarsFilter { String name } }
The text was updated successfully, but these errors were encountered:
9262482
No branches or pull requests
Steps to reproduce the behavior:
edit this CarController and run test for it
The text was updated successfully, but these errors were encountered: