Open
Description
Currently validations on beans do not work. I tried to add @Valid
annotation on CrudController but is not working. Also tried overriding the methods and provide validation implementation in the specific controller but that also not working.
would like to have following to perform validations for the apis
@PostMapping
public Long create(@RequestBody **@Valid** DTO dto) {
return facade.create(dto);
}
Metadata
Assignees
Labels
No labels