Closed
Description
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:
- Validation failure not exposed next to binding failure for immutable form class [SPR-16841] #21381 Validation failure not exposed next to binding failure for immutable form class