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
Given:
{ use(validate()); post("/validation-OK", ctx -> { // Good, it works var validBean = ctx.body(Bean.class); }); mvc(new Controller_()); } class Controller { @POST Bean create(@Valid Bean validBean) { //Bad, validation will run twice } }
The text was updated successfully, but these errors were encountered:
3c17973
jooby-validation: skip double validation when filter is on lambda and…
13a0c7f
… controller - jooby-apt: set the `io.jooby.validation.BeanValidator:true` route attribute - fix #3530
No branches or pull requests
Given:
The text was updated successfully, but these errors were encountered: