Tagged Questions

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)

41
votes
9answers
19k views

Cross field validation with Hibernate Validator (JSR 303)

Is there an implementation of (or third-party implementation for) cross field validation in Hibernate Validator 4.x? If not, what is the cleanest way to implement a cross field validator? As an ...
13
votes
3answers
5k views

Is there an implementation of JSR-303 (bean validation) available?

I know there are non-standard frameworks such as commons-validator, and hibernate validator. I wanted to know if someone knows an implementation of the official standard.
11
votes
1answer
2k views

JSR 303 Bean Validation + Javascript Client-Side Validation

What is the best way to perform client-side form validation using Javascript (with minimal code duplication) when using JSR 303 bean validation on the server side? I'm currently using Spring 3 and the ...
9
votes
1answer
296 views

Why do bean validation Min/Max constraints not support the double type?

Could somebody please explain to me why the JPA supports the double type as a field type, but the bean validation constaints in javax.validation.constraints (i.e. @Min/@Max) do not support it? I know ...
9
votes
4answers
2k views

Unique constraint with JPA and Bean Validation

I'd like to have a @Unique constraint with Bean Validation, but that is not provided by the standard. If I would use JPA's @UniqueConstraint I wouldn't have a unique validation and error reporting ...
8
votes
1answer
606 views

Hibernate Validation of Collections of Primitives

I want to be able to do something like: @Email public List<String> getEmailAddresses() { return this.emailAddresses; } In other words, I want each item in the list to be validated as an ...
8
votes
2answers
3k views

GWT JSR 303 client validation

I'm developing a GWT application with a Spring backend that uses JSR 303 validation. The application can go offline and use the browser HTML5/Gears database instead. What is the best way to implement ...
7
votes
1answer
190 views

Using both JSR-303 and Traditional Bean Validation?

Is it possible to use both JSR-303 bean validation and traditional validation (a single validator class for the type) in Spring? If so, what configuration is required to set this up? I have tried ...
6
votes
1answer
226 views

Multiple validators on one field with JSF bean validation

i am trying to make multiple validation one one field @NotBlank(message = "{name.required}") @Max(value = 25, message = "{long.value}") public String name; JSF: <h:inputText ...
6
votes
1answer
127 views

JSR 303 Validation Override

How can I go about overriding the validation on the email for the AuthorizedUser in the following situation: public class Account { @Length(min = 1, max = 100, message = "'Email' ...
5
votes
1answer
385 views

Programmatic Bean Validation (JSR 303) without Annotation [closed]

Possible Duplicate: using Hibernate Validator without calling annotation. I have this composite constraint annotation (only for illustration): @Target... @Retention... ...
5
votes
1answer
358 views

How do I apply AOP advice to a ConstraintValidator<A,T> in Spring?

I am attempting to write my own Validator (as per the JSR-303 specification) under Spring 3.0.x. I annotated the isValid(Serializable, CosntraintValidatorContext) method with @Transactional, but it ...
5
votes
1answer
416 views

JSR303: Trying to customize a constraint violation to be associated with a sub-path in a class-level relationship constraint validator

I am using JSR303 and created a class-level constraint that compares the password and its confirmation in a form, which I shall name here the @SameAs constraint. Ideally, I would have liked to ...
5
votes
3answers
3k views

JSF 2.0: How to skip JSR-303 bean validation?

How to skip JSR-303 Bean validation with JSF, when a button is clicked? A bit lengthy question to explain a few approaches... Consider a list in a form: <h:form id="form"> ...
5
votes
1answer
442 views

nested Annotation List in Scala

Help, how do i do stuff like the following in Scala? import org.hibernate.validator.constraints.ScriptAssert @ScriptAssert.List({ @ScriptAssert(script = "...", lang = "javascript"), ...
5
votes
2answers
514 views

How can I validate two or more fields in combination?

I'm using JPA 2.0/Hibernate validation to validate my models. I now have a situation where the combination of two fields has to be validated: public class MyModel { public Integer getValue1() { ...
5
votes
1answer
2k views

Not showing error messages when validated using @valid(JSR-303) in Spring MVC

I have specified <mvc:annotation-driven /> in dispatcher-servlet. I am not using @InitBinder. And I am using @valid annotation for validation in controller's method like ...
5
votes
5answers
1k views

Java Bean Validation (JSR303) constraints involving relationship between several bean properties

Say I have the following simple java bean: class MyBean { private Date startDate; private Date endDate; //setter, getters etc... } Is there a mechanism in JSR 303 to create a custom ...
4
votes
1answer
72 views

what to use, managed beans (backing beans) or entity beans?

I see a lot of examples marking beans as entity beans (@Entity) & named beans (CDI), so as to avoid creating 2 classes (managed bean & entity bean) and also to make use of Bean Validation so ...
4
votes
4answers
102 views

Validation framework in C#?

In the java world there is the bean validation framework JSR-303 which is a nicely well thought out strategy for performing data validation in both the presentation and persistence layers of an ...
4
votes
3answers
393 views

JSF : JSR 303 Bean Validation - Why on getter and not setter?

I don't understand why JSR 303 (bean validation) is for the getter methods and not setter? Isn't it more logical to put it under setter method since that is the entry point into a field and validation ...
4
votes
3answers
1k views

How do I use @Valid with Spring MVC's @RequestBody parameters?

I'm having an issue with using @Valid on a parameter to a handler method on my @Controller. My code looks like this: @RequestMapping(value=BIBBLE_BOBBLE_URI_PATTERN + "/widgets", ...
4
votes
1answer
251 views

Can you change an annotation message at run time?

I'm trying to include a dynamic message in my annotation that changes the main body of the text based on the values that are found in the other variables that are passed to it. I set a default ...
4
votes
1answer
218 views

jaxb and jsr303

I am constructing object out of configuration using jaxb. Until now I wrote custom function for validation but I would like to move into annotations. e.g.: @XmlElement public void setNumber(Integer ...
4
votes
3answers
751 views

Method Parameter Validation with JSR-303

Is JSR-303 also intended for method parameter validation? If so, is there any example on the web? The biggest challenge I'm facing is how to get a validator within each method. With Spring 3, doesn't ...
4
votes
1answer
1k views

JSF2 i18n bean validation messages

How can I return a i18n localized bean validation message? For example, in: @Size(min = 1, message = "{pleaseProvideADescription}") private String description; Even though I set properties file ...
4
votes
3answers
1k views

Spring MVC and JSR-303 hibernate conditional validation

I've a form I want to validate. It contains 2 Address variables. address1 has always to be validated, address2 has to be validated based on some conditions public class MyForm { String name; ...
3
votes
1answer
79 views

Methods for getting annotation metadata in Java

I'm working on a JSR-303 validation framework for GWT. Some of you may have heard of it even though it is a small project. Here is gwt-validation. In the old days (v1.0) it used a marker interface ...
3
votes
1answer
90 views

JSR 303 Custom constraint Override

i want to put set of standart constraints (like not null alphanumeric string with length from 3 to 240 chars) on the fields (String in this case) and want to know is there a way to override some of ...
3
votes
1answer
60 views

JSR303 validation on collection of common objects

Is it possible to validate each element of a collection, based one or more delegate validation rules? For example: @EachElement({@Min(1), @Max(12)}) private Set<Integer> monthNumbers;
3
votes
2answers
161 views

Hibernate Validator - @Length - How to specify separate message for min and max?

I am using Hibernate validator for form validation in my web-app. I am using the @Length annotation for my String attribute as follows: @Length(min = 5, message = "The field must be at least 5 ...
3
votes
2answers
240 views

Spring validator: having both annotation and validator implementation

Is it possible to have both a validator for a form and annotation constraints? For example to have in a form object this field: @NotEmpty private String date; but then validate the date's pattern ...
3
votes
1answer
234 views

How to change location of ValidationMessages.properties in Bean Validation

By default, ValidationMessages.properties can be located in root of my classpath. Can I change the location of this file like com.myapp.Anything.properties?
3
votes
1answer
183 views

How to disallow a digit repeating n times with a regular expression

Here is my @Pattern annotation. I want to disallow digits that repeat 9 times. What have I done wrong? @Pattern(regexp="(?!.*\\d{9})") These would be invalid strings: 111111111 222222222 These ...
3
votes
2answers
748 views

Making javax validation error message more specific

Sorry if this question has been covered somewhere before. If it has please link me to it, I haven't been able to find a satisfactory answer as yet. I've been looking around trying to find a way to ...
3
votes
4answers
2k views

hibernate unique key validation

i have a field say 'user_name' in table that should be unique. what is the best way for validation using spring - hibernate validation? Thanks in advance. Regards, Nidhin
3
votes
1answer
710 views

JSR-303: Yet Another Cross-field Validation Problem

I have a @Money constraint that indicates the annotated Double property is, well, money. I wrote a ConstraintValidator that checks if a @Money property has a valid value, which depends on a Currency ...
3
votes
2answers
189 views

Validation doesn't work on EntityManager.merge()

I have few validations on my entity, like @NotNull, and some generation, like @Id @GeneratedValue(strategy = AUTO) @Column(name = "ID") private Long id; @Column @GeneratedValue(strategy = ...
3
votes
3answers
750 views

JSR 303: How to Validate a Collection of annotated objects?

Is it possible to validate a collection of objects in JSR 303 - Jave Bean Validation where the collection itself does not have any annotations but the elements contained within do? For example, is it ...
3
votes
1answer
746 views

JSR-303 Type Checking Before Binding

model.... @Digits(integer=5, fraction=0, message="The value must be numeric and less than five digits") private int value; beans file.... <mvc:annotation-driven /> controller.... ...
3
votes
4answers
320 views

Python validation API

I'm looking for a Python (<3) validation API something like Java's Bean Validation or Spring validation. I'm not looking for a library that is limited to form validation, since I want to validate ...
3
votes
1answer
6k views

javax.validation.ValidationException: Unable to find default provider

I am currently working on Spring MVC web app and trying to hook up validation using the @Valid annotation. When I fire up the application I'm getting the following exception: ...
3
votes
7answers
580 views

“Dynamic” java validation framework?

AFAIK JSR-303 is the standard bean validation system. I don't know whether it could do validations like this (I guess no): if an object has a deleted flag set, you cannot modify the object you ...
3
votes
1answer
2k views

How do I import javax.validation into my Java SE project?

I'm trying to add constraints checking, as described here http://stackoverflow.com/questions/2705759/how-to-specify-the-cardinality-of-a-onetomany-in-eclipselink-jpa
3
votes
1answer
724 views

JPA validation strategy

NetBeans let me choose between three values for the JPA validation strategy: Auto, Callback and None. What does "Auto" mean? Does "Callback" mean the use of @PrePersist, @PreUpdate, and @PreRemove? ...
3
votes
1answer
2k views

jsr 303 (hibernate validator 4) and spring 2.5.x

How can I configure my Spring 2.5.x application to utilize the JSR 303 validation (hibernate validator 4x) ? I'm using Maven, and update the version of hibernate validator to 4.x, though when my ...
3
votes
1answer
566 views

Can Hibernate Validator be used as component outside Hibernate?

I am trying to add validation for message payload (which are json). I am using Jackson Json processor for data binding, which works quite well for me, using bean methods and occasional annotation or ...
2
votes
1answer
85 views

Spring 3, JSR-303 (bean validation) and validating collection

I have a simple class Foo, saying like this one : public class Foo { @NotNull private String bar; public String getBar(){ return bar; } public void setBar(String _bar){ this.bar = ...
2
votes
2answers
74 views

How can I support JSR-303 validation and Jackson JSON mapping together effectively?

When building a RESTful web service using Spring MVC, I feel I've encountered a tricky situation when trying to combine Jackson JSON deserialization and JSR-303 bean validation. One of the neat ...
2
votes
0answers
99 views

LocalValidatorFactoryBean causing Spring MVC Internal Server Error

I am using JSR-303 bean validation in a Spring MVC project. Everything works fine when I have a JSR-303 provider on the classpath, and leave all other validation settings in their default modes. I'd ...

1 2 3 4 5