Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2012-04-30 | 3.7 kB | |
changelog.txt | 2012-04-30 | 33.8 kB | |
hibernate-validator-4.3.0.CR1-dist.tar.gz | 2012-04-30 | 13.6 MB | |
hibernate-validator-4.3.0.CR1-dist.zip | 2012-04-30 | 15.9 MB | |
Totals: 4 Items | 29.5 MB | 0 |
Hibernate Validator
Version: 4.3.0.CR1, 30.04.2011
What is it?
This is the reference implementation of JSR 303 - Bean Validation. Bean Validation defines a metadata model and API for JavaBean validation. The default metadata source is annotations, with the ability to override and extend the meta-data through the use of XML validation descriptors.
A bit of history
Prior to version 4.x Hibernate Validators was based on a different source base which is not based on JSR 303. This code can be accessed via this GitHub tag.
Documentation
The documentation for this release is included in the docs directory of distribution package or can be accessed online.
Release Notes
The full list of changes for this release can be found in changelog.txt.
System Requirements
JDK 1.6 or above.
Using Hibernate Validator
- In case you use the distribution archive from the download site, copy dist/hibernate-validator-<version>.jar together with all jar files from dist/lib/required into the classpath of your application. You can switch the slf4j binding jars for log4j (log4j-<version>.jar and slf4j-log4j12-<version>.jar) with the slf4j binding files of your choice. See http://www.slf4j.org/manual.html In case you are using Java 5 you have to also include all the jar files from the dist/lib/jdk5 directory. The jar files contain the classes needed for JAXB. If you don't use the xml configuration and XML configuration is disabled via Configuration.ignoreXmlConfiguration the jar files from the dist/lib/jdk5 directory don't have to be added.
or
- Add the following to your maven or ivy dependency list (Hibernate Validator can be found in the JBoss Maven repository):
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>4.3.0.CR1</version> </dependency>
hibernate-validator-annotation-processor-<version>.jar is an optional jar which can be integrated with your build environment respectively IDE to verify that constraint annotations are correctly used. Refer to the online documentation for more information.
Licensing
Hibernate Validator itself as well as the Bean Validation API and TCK are all provided and distributed under the Apache Software License 2.0. Refer to license.txt for more information.
Build from Source
You can build Hibernate Validator from source by cloning the git repository git://github.com/hibernate/hibernate-validator.git You will also need a JDK 6 or 7 and a Maven 3. With these prerequisites in place you can compile the source via
mvn clean install -s settings-example.xml
The documentation module requires an additional tool called po2xml. If you don't have po2xml installed you can skip the building of the documentation via:
mvn clean install -DdisableDocumentationBuild=true -s settings-example.xml
There are more build options available as well. For more information refer to Contributing to Hibernate Validator.