We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
validation on Flux<Dto> only works with the @Valid at the Flux<> and not on the dto object.
Flux<Dto>
@Valid
Flux<>
i.e. it requires
@Valid Flux<Dto>
instead of
Flux<@Valid Dto>
The text was updated successfully, but these errors were encountered:
a workaround for small request bodies may be to disable the flux ...
map: # enabling mono/flux single: reactor.core.publisher.Mono multi: reactor.core.publisher.Flux types: - type: array => java.util.Collection # disable the flux paths: /books: post: multi: plain
Sorry, something went wrong.
openapi-processor/openapi-processor-spring#229, add @Valid to reactiv…
01b7cc0
…e type and not the wrapped type
openapi-processor/openapi-processor-spring#229, update integration test
fa6f8cf
openapi-processor/openapi-processor-spring#229, add compatibility map…
5dc3829
…ping option to keep @Valid on the wrapped type
No branches or pull requests
validation on
Flux<Dto>
only works with the@Valid
at theFlux<>
and not on the dto object.i.e. it requires
instead of
The text was updated successfully, but these errors were encountered: