Hibernate Validator is the reference implementation for JSR 349 - Bean Validation 1.1
0
votes
1answer
20 views
Move validation constrains from property to method at runtime (JSR 303)
I have plenty of classes with defined JSR 303 validation annotations on class fields. Due to the fact that we use ORM and lazy loading there is problem that constrains should be defined on getters ...
0
votes
1answer
30 views
Hibernate Validator implementation
I am considering using Hibernate Validator for my project.
http://www.hibernate.org/subprojects/validator.html
I have a few questions and hopefully experiences software engineer can share their ...
0
votes
0answers
13 views
Is there a simple example for validation of method parameters with Seam Validation?
I'm stuck...
I know https://github.com/gunnarmorling/methodvalidation-integration/tree/master/methodvalidation-cdi, which works fine, and I know that there's Seam Validation that should help me ...
0
votes
1answer
37 views
getting error java.lang.NoClassDefFoundError: org/hibernate/validator/resourceloading/ResourceBundleLocator
I have a spring project in which i am using validator like
<beans:bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"
...
0
votes
1answer
42 views
getting error Caused by: java.lang.NoClassDefFoundError: javax/validation/ValidatorFactory
I have a spring project. When i run i get the following error
SEVERE: Unable to process Jar entry [javax/validation/bootstrap/GenericBootstrap.class]
from Jar ...
0
votes
0answers
22 views
hibernate bean validation - group validation sequence
I cannot get my GroupSequence to work. I want the inner constraint's on the id property to validate first before the unique constraint's are validated.
In each interface
Entity
...
0
votes
1answer
32 views
hibernate validator - custom factory validates twice
Using a custom ConstraintValidatorFactory which is aware of the hibernate session by adding it to the configuration using following code results in double validation on any operation (create, update) ...
0
votes
2answers
19 views
Changing Property file name for Hibernate Validator
I don't want to use ValidationMessages.properties to hold the messages for my app. I want to use what everything else uses: LabelNames.properties.
Any way that can be done?
0
votes
1answer
47 views
Hibernate Validator 4 standalone: class constraints caching
I want to use Hibernate Validator 4 as a standalone package (i.e. without
Spring/Hibernate). The code which I found was the following (MyBean is some
bean with Hibernate Validator 4 annotations, ...
0
votes
2answers
48 views
Form validation using Hibernate Validator
I'm using Hibernate Validator to validate the input fields in my form. Ideally I'd want to show an error message next to each field when there is a problem with that field.
In the register form I ask ...
0
votes
1answer
33 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 ...
2
votes
1answer
63 views
One Transaction for Hibernate Validation and Spring controller
I am trying to implement the registration controller for a Rest API. I have read about where to place @Transactional quite a bit. (Not at DAO level but at the services maybe orchestrated). In my use ...
2
votes
1answer
130 views
Spring MVC Hibernate Validator TypeMismatch Exception
I'm using Spring MVC with Hibernate validator 4.2.0. have a ValidationMessages.properties on my class path in /WEB-INF/classes/ValidationMessages.properties:
typeMismatch.java.lang.Integer=Must ...
0
votes
1answer
34 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 ...
-4
votes
1answer
69 views
How to prevent question marks in a Java String using regular expressions [closed]
I'm trying to write an expression that will allow any character in a String except for a question mark. For example:
Testing :: valid
1234éáúTesting :: valid
Test?ing :: invalid
Basically I'm ...
1
vote
1answer
69 views
How to validate multiple models in a spring mvc form?
I have a spring mvc form with multiple models. Color and Shade
I am using hibernate validator and when I only have one model the validations work perfectly. From my research I found that best way to ...
0
votes
1answer
29 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 ...
1
vote
0answers
68 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, ...
-1
votes
2answers
90 views
Spring Validation Between Two Date Fields?
In my Spring Application, i'm Using Hibernate Validator for Validation Purpose.
When i'm doing simple Validation like @NotEmpty, @Email .. i'm easily working
But When coming to Date field, giving ...
0
votes
1answer
35 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
66 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
106 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
1answer
72 views
Validation class hierarchy override
Is it possible to override the class hierarchy for hibernate/javax validation?
Or how to override the parameter validation by extending a class?
Using the @Valid annotation and having setup the javax ...
0
votes
2answers
397 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
85 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
0answers
206 views
JSF 2.0: Has the presence of JSR-303 bean validation an impact on custom JSF-Validators?
I'm now in charge for a JSF 2.0 application, where everything is validated through custom validators which totally blows up the *.xhtml files. I tried to migrate the validation to JSR-303 bean ...
0
votes
0answers
64 views
including hibernate-validator breaks existing hibernate configuration
I am writing a java module in which I have used hibernate validator. The module works fine by itself.
However when it is included as part of a parent project which uses hibernate for standard entity ...
1
vote
1answer
309 views
Syntactically incorrect request sent upon submitting form with invalid data in Spring MVC (which uses hibernate Validator)
Login form:
<f:form class="form-horizontal" method="post" action="/login"
commandName="logindata">
<fieldset>
<legend class="text-info">Login</legend>
...
0
votes
2answers
91 views
Determine whether field is annotated with a given annotations
I don't know if you managed to figure out what i am trying to do just from the title so I'll try to explain with example
Lets suppose I have created my own annotation @VerifySomething
And I have ...
0
votes
1answer
30 views
Hibernate constraints on Embeddable class
I have the following entity
@Entity
@Table(name = "item")
public class Item implements Serializable {
@Embeddable
public static class ItemPK implements Serializable {
private static ...
0
votes
2answers
177 views
How to customize default message for BigDecimal
Here are the models:
public class myFormData {
private BigDecimal trackingNumber;
@Valid
private List<myCustomRecord> records = new ArrayList<myCustomRecord>();
}
public ...
1
vote
2answers
1k views
Validation with Spring 3.2.0
I'm using HibernateValidator 4.3.1. Validations are performed as intended throughout the entire application.
I have registered some custom editors to perform validation globally such as for ensuring ...
0
votes
1answer
80 views
Java validator for String
How do I validate using Hibernate validator for elements appearing more than once in a JSON payload bound to a Java class annotated with validator annotations?
Let's say I have the following:
class ...
0
votes
1answer
151 views
Jackson and Hibernate Validator
Are there any online tutorial available to use Hibernate validator with Jackson for validating JSON?
I am using Spring and Jackson now for JSON parsing.
With Spring, I use ...
0
votes
3answers
112 views
NoClassDefFoundError while using hibernate-validator
I have a mavenized project, where I use JSR 303 (Bean validation). As reference implementation I use Hibernate-validator. In project I specified dependency:
<dependency>
...
0
votes
1answer
33 views
Analogue of @NotRquired annotation for validation
I use Hibernate Validation 4.3.1.Final and Spring 3.2.0.RELEASE
I have a form with a string attribute. This attribute is not required, but if it contains some value this value should be exactly 10 ...
1
vote
2answers
190 views
JSR 303. Validate method paramter and throw exception
How I can using JSR-303 validate method parameters and throw exception if parameter not valid?
For example like this: public void createUser(@ValidOrThrowException User user) {...}?
For now, I ...
2
votes
1answer
256 views
Bean Validation ( JSR 303 ) and Hibernate validation not triggers when inside an EAR
I am missing something really basic (related to class-loading in EAR or EAR configuration). I could not figure out, why my JSR 303 validations and Hibernate validations not triggers from inside an ...
0
votes
1answer
114 views
Make Hibernate Validator validate a Map by key
I am using Hibernate Validator (HV) as my JSR 303 validator. However, both in JSR 303 and in HV's extensions, there does not seem to be any annotation to specify constraints like a key must exist in a ...
0
votes
0answers
103 views
Hibernate validator eats CPU on regex matching
We are trying to validate address using hibernate validator. Some times hibernate validator hangs on java regex matching. It completed eats CPU usage and not able to process anything else. Is there ...
0
votes
3answers
807 views
Spring MVC Form Validation - The request sent by the client was syntactically incorrect
I am trying to add form validations to a working application. I started by adding a NotNull check to Login Form. I am using Hibernate impl of Bean Validation api.
Here's the code I have written
...
0
votes
1answer
113 views
spring mvc process object before @valid is applied
I have a spring mvc controller like the following
@RequestMapping(value="/new", method=RequestMethod.POST)
public String createBooking(@Valid Booking booking, BindingResult bindingResult, Model ...
0
votes
1answer
136 views
Should I use Hibernate Validator inside setters for validation?
I understand that validation is required at several layers of an application. But, if the validations to be imposed are same across all the layers (which is the case most of the time), it makes sense ...
0
votes
1answer
79 views
How can I customize the Validator for Hibernate Validator's method validation with Seam?
I'm using Hibernate Validator and added some custom validation annotations, resource bundle location and a custom message interpolator. This is all done by customizing the Validator at bootstrapping ...
0
votes
0answers
112 views
Why does method validation not work with custom Hibernate Validator annotations?
I'm experimenting with Hibernate Validator's method validation.
I've written the simplest EJB I can imagine and annotating the constraints on it.
However, it won't work with my custom annotations.
...
0
votes
1answer
84 views
Implement validations in setters or use Hibernate Validator
I am facing a design decision in my GWT + Hibernate project.
I will explain my question using a Company entity.
@Entity
@Table(name = "Company")
public class Company extends LightEntity implements ...
1
vote
1answer
239 views
When validating a collection of beans, how can I indicate in the error message, which element of the collection is in error?
I have a bean which references a collection of other beans. I use @Valid to include all referenced beans in the validation.
public class MasterBean {
@Valid
private ...
0
votes
2answers
573 views
How to use JSR 303 (Bean validation)?
I read many tutorials about JSR 303 spec, but I don't see any example ready for production. Everywhere described how to get Set<Constraintviolation<T>> object.
Example:
...
2
votes
2answers
80 views
How can I make Seam Validation work outside a Java EE container?
I want to use Hibernate Validator's method parameter validation feature. From what I read in the documents, Hibernate Validator just offers an API, and I need the @AutoValidating annotation of Seam ...
0
votes
2answers
684 views
Hibernate Validator. How to work with @Valid annotation?
What purpose of @Valid annotation when putting it on method parameter level?
public void (@Valid Person p) {..}
I created a test, and passed to this method non-valid object, but nothing happen. I ...




