hibernate-validator
How to Migrate from Hibernate Validator Legacy (3.x) to Hibernate Validator 4.x
Our application was built using Hibernate Validator 3.1.0 (now called Hibernate Validator Legacy). I\'d like to migrate it to use Hibernate Validator 4.x (4.2.0).[详细]
2023-04-10 10:00 分类:问答How to do the Hibernate validation on the nested list objects?
I need to validate the objects which are stored in the list on my form bean object. Below is my form bean object.[详细]
2023-04-07 13:47 分类:问答Hibernate Validator: How to get the message ID's for any given error?
In some cases I get an unexpected error message (I missed a message for some condition that Hibernate Validator checks for).[详细]
2023-04-06 04:28 分类:问答hibernate validator without using autowire
I\'am currently working on a Jersey project and decided to use Hibernate validator for the parameter validations. All dependencies injected on the Endpoint classes are properly initialized. However fo[详细]
2023-04-05 14:07 分类:问答How to use @Valid with custom validation?
i am using hibernate validation annotation framework to validate my domain classes and validating my domain object with @Valid annotation as follows:[详细]
2023-04-04 18:33 分类:问答Can Hibernate Validator 3.x coexist with 4.x?
Can Hibern开发者_Python百科ate Validator version 3.x (proprietary) coexist with version 4.x (JSR-303 compliant) in the same application server lib? I\'m using JBoss 4.2.3.Yes, I think this should work[详细]
2023-04-03 11:55 分类:问答GWT doesn´t find my persistence.xml
I´m trying to save a simple user in my jpa hibernate db. So I have a persistence.xml that I know that works (If I execute a simple test without deploying the gwt app).[详细]
2023-03-30 23:08 分类:问答problem with validating form in spring under hibernate validator
i have a problem with a simple form in spring that use validating with hibenate validator my form: <form:form method=\"POST\" commandName=\"info\">[详细]
2023-03-30 06:39 分类:问答How to add custom error messages in Hibernate validator
I have a simple class like this, import javax.validation.constraints.NotNull; import org.hibernate.validator.constraints.Length;[详细]
2023-03-29 05:19 分类:问答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:[详细]
2023-03-28 18:45 分类:问答