I have an entity class which uses an enum type for one of the properties, and I am getting the following exception when I try to persist the entity:
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 am using the hibernate implementation of jsr303 for server side validation.When Set<ConstraintViolation<?>> is returned I immediately add th开发者_JAVA技巧e errors to a BindingResult for
I\'m stuck with validation in my current use case. My app has standard structure (WEB <-> EJB3 Services <-> EJB3 DAO <-> DB).
I\'m looking for something which is probably out there, hence why I\'m asking and not just creating it...
I am using bean to validate the form of JSP. If use setProperty and if some fields on the form is left blank it is throwing a null pointer exception. This exception is happening only if the field is h
I know the issue is discussed in many posts in the forum, however I\'m still having problems customizing the messages for the bean validation. Maybe some little things missing in configuration or file
I have an application that uses Seam 2.2.2- JSF 1.1 - Hibernate Validator 3.1.0.GA. I am trying to display custom messages using hibernate validate message=() option. message=() gets displayed for oth
I can have Spring convert my json POST submission into an object with a method like this: @RequestMapping(value = \"/doSomething\", method = RequestMethod.POST)
I have entity ExchangeRate {date, currencyFrom, rate} . Entity currencyFrom has properties code and Name. I add it to container addNestedContainerProperty(\"currencyFrom.code\");