Bean Validation, also known as JSR-303, is an annotation based validation framework for javabean properties. Hibernate Validator is the reference implementation and the most widely used one.

learn more… | top users | synonyms (2)

0
votes
1answer
8 views

Will placing constraints on arbitrary method return types violate Bean Validation 1.0?

I'm aware that Bean Validation 1.1 introduces support for validating arbitrary methods. But will the adding of, say, a @NotNull constraint on an arbitrary method (such as, say, @NotNull public ...
0
votes
1answer
14 views

How to escape curly braces in hibernate validator messages (test case provided)

I want to put something like {this} as a message value for hibernate validator validation message. so i escaped the value of this given message in properties file :\{this\} however Hibrnate ...
0
votes
2answers
24 views

Spring MVC JSR 303 Validation with Json response validation errors from ValidationMessages.properties

Hi I was looking for everywhere but can't find solution. I am making an ajax call in Jquery function and submiting data from spring inputs form:input to Controller. Controller is validating date by ...
0
votes
1answer
13 views

JSR 303 - Name of the annotated field in the custom validator

I have a question about custom annotations. More precisely, do I have access to the name of the annotated field inside the custom validator ? If yes, how do I access this? Thanks
0
votes
1answer
56 views

Display JSR-303 errors before form submission with Spring MVC

Is there an easy way in Spring MVC 3.x to display form error messages (obtained by JSR303 validation), before submiting the form ? Consider the example code at the end of this post. The end-user is ...
1
vote
1answer
14 views

BeanValidation for runtime derived constraint values

Fellow Devs, Would like to use jsr303 in place of current custom validation framework because of some features that the custom framework doesn't support yet, and i'm investigating if the jsr supports ...
1
vote
2answers
28 views

jsr-303 annotations on a spring mvc controller parameter

Is it possible to use Bean Validation annotations like @Past or @Length on Request Parameters in spring mvc? I would like to do something like: @RequestMapping(method = RequestMethod.POST) public ...
0
votes
1answer
18 views

JSR 303 - Validate a field if it is not null

I have a form which is filled in, and some of the fields are options. I want to apply validations on the information that was filled in but the optional fields should be validated only if there was ...
1
vote
1answer
23 views

Default Annotation on every property jsr303

I am validating the user input using jsr303. I was wondering if there is a way to put an annotation by default on all the properties of a class. For example public String getName(); public String ...
-1
votes
0answers
59 views

@Size and @Length validators don't work with HibernateValidator [closed]

I have the following jar files on the classpath. hibernate-validator-4.3.1.Final.jar hibernate-validator-annotation-processor-4.3.1.Final.jar validation-api-1.0.0.GA.jar I'm trying to validate a ...
0
votes
2answers
56 views

How to unit test classes with bean validation? (Java EE)

I'm unit testing some classes annotated with jsr303 constraints, but I can't find a proper maven dependency for javax.validation.Validation in order to create the ValidatorFactory used in my tests. ...
0
votes
1answer
24 views

Mutiple validation options in Annotation

My question is a branch of of this one. I have a Annotation (say phone annotation) that I want to validate. I can use @phone validator to check if a phone object is valid or not. I want to also be ...
0
votes
1answer
33 views

Type check in JSR-303 custom validator initialize method

I'm attempting to create a class level JSR-303 validation definition that checks that one property occurs before another in time. Because the this validation only makes sense for Calendar properties I ...
0
votes
1answer
22 views

Generate a xsd for a JSR-303 annotation-based bean

Is there a tool or maven plugin to generate a xsd-file for a JSR-303 annotation-based bean? I use SpringMVC for my REST services and validate the beans using JSR-303. Now i want to generate for based ...
0
votes
0answers
42 views

Validate javax.validation.* annotated object from external jar in Play Framework 1.2.5

I have an entity class which has jsr303 validation annotations. It is compiled against hibernate-validator, then packaged in a jar using maven. I then have a play 1.2.5 app which includes this jar, ...
0
votes
1answer
69 views

@Valid annotation - This annotation disallowed for this location

I have controller method that has @Valid annotation to enforce JSR303 Bean validation. But when I just give @Valid is shows" This annotation @Valid is disallowed for this location I can get rid of ...
1
vote
1answer
50 views

different validations in JPA

I am converting a project to JPA2.0 with hibernate implementation and JSF2.0. There is some annotations in the old project like @Length(min = 3) and @NotNull which are imported from ...
1
vote
2answers
99 views

Bean Validation - Multiple Regex @Pattern's for 1 Field?

I was attempted to apply multiple @Pattern annotations to a single field: @Pattern(regexp = "(?=.*[0-9])", message = "Password must contain one digit.") @Pattern(regexp = "(?=.*[a-z])", message = ...
0
votes
1answer
57 views

Force JSF to bean-validate ALL fields of my bean, not only those bound to an input field

I am working with the Apache MyFaces Core 2.1 library and Hibernate Validator 5. I have a simple JavaBean with some annotations. My form with some input fields map to this JavaBean. However, if I ...
0
votes
1answer
20 views

How to validate Entitiy for only 1 field

i have simple question about JPA validator @Entity class Account { @NotNull int id; @Size(max = 30, min = 6) String name; @Size(max = 30, min = 5) @NotNull String password; } If i ...
0
votes
1answer
31 views

Null Version fields in JPA?

Nothing in http://docs.oracle.com/javaee/6/api/javax/persistence/Version.html says it cannot be null. After running import javax.validation.Validation; import javax.validation.Validator; import ...
0
votes
0answers
96 views

@Valid is not working for JSON @RequestBody mapping. Spring MVC

I read this article about @Valid and @RequestBody. I am using Spring 3.2. The mapping is working. But the validation is not working. But the validation works, when the I try to save the object using ...
0
votes
1answer
30 views

My custom accessor is never used and only the field default value is used by hibernate validator instead

I have the following code inside a javabean: @AssertTrue private boolean addressReferenceValid; public boolean isAddressReferenceValid() { if (addressType.equals(AddressType.ON_THE_FLY_ADDRESS) ...
2
votes
2answers
296 views

spring-data-jpa bean validation in junit tests

In my recent work I've used spring-data-jpa to take advantage of provided repositories. When it came to integration tests I am unable to configure (I assume) spring context for testing and as a ...
0
votes
1answer
133 views

Vaadin 7 Validation (BeanValidator and setrequired)

Hi I have just started Vaadin 7 and have got the BeanValidator working. But, I have some issues. The code I am using is the following: BeanItem<RegisterBean> item = new ...
0
votes
2answers
200 views

Vaadin 7 - Bean Validation

I have been trying out Vaadin 7. Firstly, I must admin that I am quiet a noob at Vaadin and not much familiar with JAVA persistance. I am thus trying to learn bean validation and how to use it. I have ...
0
votes
0answers
24 views

Bean Validation is not kicking in during POST - But works when Hibernate tries to saves the bean - Spring MVC

I have the following bean: @Entity @Table(name="employees") public class Person { private Integer person_id; private String name; private String name2; private String email; private double phone; ...
0
votes
1answer
43 views

HTML form validation based on bean validation in a JAX-RS 2.0 application

We know JAX-RS made it easy to map form input values directly to server bean properties or method parameters. Now JAX-RS 2.0 provides a way to validate the server side values using bean validation, ...
0
votes
1answer
156 views

Spring MVC - REST Webservices. Bean Validation Messages

I am trying to find out the way to show proper validation messages in my Spring MVC application. This is the Example Bean: @Entity @Table(name="employees") public class Person { private Integer ...
0
votes
1answer
76 views

Bean Validation 1.1 (JSR-349), implementation alternatives?

Besides the reference implementation (Hibernate Validator 5.x http://www.hibernate.org/subprojects/validator.html) are there alternative implementations of this JSR?
2
votes
2answers
51 views

JSR-303 How to validate two children objects differently

I'm using Hibernate Validator as JSR-303 implementation. Suppose I have: class Form { @Valid private Owner mainOwner; @Valid private Owner secondOwner; // ... many other fields } ...
0
votes
1answer
60 views

prevent validation messages raised by hibernate to be displayed in JSF [age

I have Min and Max annotations over my JPA entitycode example @Min(value=1) private int id; @Max(value=10) private int count; //getters and setters in JSF page a message is returned from these ...
1
vote
1answer
58 views

CodeModel How do i add @Pattern.List annotations com.sun.codemodel

I'm using com.sun.codemodel for generating my classes and adding JSR303 annotations. This is working fine, except when I want to add @Pattern.List annotations. ...
0
votes
1answer
89 views

JSF 2 and manual validation with JSR 303 - how to track fields?

I want to use JSR 303 (Hibernate Validator) in my JSF 2 project. However, I have complicated forms and field-level validation is not sufficient. I need to use many @ScriptAssert annotations at ...
0
votes
0answers
87 views

JAX-RS Form Validation -Highlight input text field and display validation message

I have a sample CRUD application, The application used is a Wine Cellar app. You can search for wines, add a wine to your cellar, update and delete wines. I got it from RESTful services with jQuery ...
0
votes
1answer
71 views

GWT validation (JSR 303) SampleValidatorFactory

I try to use bean validation in GWT. I follow this guide : https://developers.google.com/web-toolkit/doc/latest/DevGuideValidation At compile time, I have the following error : ERROR: Could not ...
2
votes
5answers
117 views

Is any reason to put @NotNull annotation on @Id field in Java entity class

I found code in entity class: @Id @NotNull @Column(name = "ID") private Long id; Is @NotNull annotation have value when @Id already set?
0
votes
1answer
84 views

In which jsf phase does @AssertTrue annotation checked?

I have a JSF application and I am using @AssertTrue on a method called isPasswordsEquals() to confirm a password match. However, the method doesn't seem to work correctly. It adds the error message to ...
0
votes
0answers
48 views

Bval ValidationMessages.properties in scala eclipse project

I have a scala project (based around unfiltered and jetty) which uses bval. I've tried everything I can think of to get custom validation messages to load from a properties file, but it just doesn't ...
0
votes
1answer
164 views

Spring MVC Validation custome message

my problem is that I have a form which has html select element with some choosing option value & I want to validate those value using : org.hibernate.validator.constraints or ...
0
votes
1answer
26 views

Run-Time Configuring a Hibernate Validation Annotation

I have some business validation logic of the form "X is valid IFF Service Y returns Z", where X and Z are known at compile time, and Y's location is loaded from a Spring configuration file. I'd like ...
0
votes
0answers
65 views

Rest Bean validation in Spring DM environment

I have developed OSGi bundles of Rest web Services. I have used Spring Dynamic Module (Spring DM) for OSGi and Spring MVC (@Controller annotation) for Rest. I use JAXB to marshal and un-marshal ...
0
votes
1answer
37 views

Set both interpolated and message template on ConstraintValidatorContext

I am in need to call validator.validateProperty() from my custom Validator and looking for a way to pass BOTH messageTemplate and interpolated message to ConstraintValidatorContext. What i want to ...
1
vote
1answer
30 views

custom constraints with non constante parameter

I would like to create a new constraint to validate an input but it need to know the value of an other input of the same form. I saw that custom constraints created with the @interface annotation only ...
0
votes
2answers
276 views

Validating double and float values - bean validation

I'm looking for a way to validate a java.lang.Double field in the Spring command bean for its maximum and minimum values like, public final class WeightBean { ...
0
votes
1answer
65 views

GroupSequence and order of evaluation in JSR 303

I have a field of type String in a command bean which has to be validated in the following order. Must contain a value (not empty). Must have exactly 6 characters. Must confirm this regexp - [0-9, ...
0
votes
1answer
211 views

Hibernate Unable to find a default provider

Getting error : org.hibernate.HibernateException: Error applying BeanValidation relational constraints at ...
1
vote
1answer
92 views

Bean validation on REST API input, and API versionning

I have a bean like: @Data public static class ClassUnderTest { @NotNull private String field1; @NotNull @Since(2.0) private String field2; @NotNull @Until(3.0) ...
1
vote
2answers
145 views

How to obtain ConstraintValidatorContext?

I am writing code that has explicit call to Bean Validation (JSR-303) something like this: public class Example { @DecimalMin(value = "0") private static final String ANNOTATED = ""; ...
1
vote
2answers
122 views

@AssertTrue Method not called when submitting JSF page

I am using bean validation with hibernate-validator-4.2.0.Final and JSF 2.1. When i submit the page @NotEmpty, @NotNull,.. works correct , but my method, annotated with @AssertTrue is never called. ...

1 2 3 4 5 11