In my Spring Boot 1.5.1 application I\'m trying to configure support of JSR-303 / JSR-349 validation.
Spring Boot 1.5.1
I have added a following annotations @NotNull @S
@NotNull @S
You need @Valid annotation
@Valid
Marks a property, method parameter or method return type for validation cascading. Constraints defined on the object and its properties are be validated when the property, method parameter or method return type is validated.