Bean Validation, previously commonly called just "JSR-303", is an annotation based validation framework for javabean properties and parameters of arbitrary methods.
I am trying to set up Hibernate. But when i try to create my Session Factory, with this code: Configuration …
java hibernate validation bean-validation hibernate-validatorI know there are non-standard frameworks such as commons-validator, and hibernate validator. I wanted to know if someone knows an …
java validation bean-validationI have a field, say, user_name, that should be unique in a table. What is the best way for …
java hibernate spring bean-validation hibernate-validatorI have a calculator service that gets the operation type, num1 and num2 from the user. I need to validate …
java spring-boot junit4 bean-validation jsrI have created a Spring MVC REST service using Bean Validation 1.2 with the following method: @RequestMapping(value = "/valid") public String …
java spring-mvc bean-validationI am trying to deploy a simple spring boot application that will expose some rest api and I use hibernate …
spring-boot bean-validation weblogic12c hibernate-validatorI have an entity class which uses an enum type for one of the properties, and I am getting the …
java jpa bean-validationWhen the PathVariable 'name' doesn't pass validation a javax.validation.ConstraintViolationException is thrown. Is there a way to retrieve the …
spring bean-validationI created an EJB Session facade in my Netbeans 7 for saving my entity. I have a manytoone mapping between my …
jpa jakarta-ee bean-validationIs there a validation annotation for Spring that will do something like: @ValidString({"US", "GB", "CA"}) final String country; and …
java spring validation bean-validation