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
Tian Wang opened SPR-17073 and commented
spring-web the same function code is
Object[] validationHints = determineValidationHints(ann);
spring-webflux is
Object hintArray = (hints instanceof Object[] ? (Object[]) hints : new Object[] {hints});
should be
Object[] hintArray = (hints instanceof Object[] ? (Object[]) hints : new Object[] {hints});
Affects: 5.0.5
Issue Links:
Referenced from: commits 3c65c17, 192113d
The text was updated successfully, but these errors were encountered:
Juergen Hoeller commented
Good catch! I'll generally align that code with 5.1's revision in ModelAttributeMethodProcessor, also not passing in empty hints as null but rather as empty array.
ModelAttributeMethodProcessor
null
Sorry, something went wrong.
jhoeller
No branches or pull requests
Tian Wang opened SPR-17073 and commented
spring-web the same function code is
spring-webflux is
should be
Affects: 5.0.5
Issue Links:
Referenced from: commits 3c65c17, 192113d
The text was updated successfully, but these errors were encountered: