Top "Jsr" questions

JSR commonly refers to Java Specification Requests, formal standards for the Java platform.

Spring Boot JSR-303/349 configuration

In my Spring Boot 1.5.1 application I'm trying to configure support of JSR-303 / JSR-349 validation. I have added a following annotations @…

java spring spring-boot bean-validation jsr
How to validate 2 field with OR condition?

I want to validate two fields of a Request Class in manner that Either one field is valid OR another …

java spring bean-validation jsr
Validate only if the field is not Null

I use JSR303 Spring Validation and I have the following; @Digits(fraction = 0, integer = 15) private String tpMobile; Validation says Must be …

java spring validation bean-validation jsr