h

hibernate-validator

Following the DRY (Don't Repeat Yourself) principle, Hibernate Validator let's you express your domain constraints once (and only once) and ensure their compliance at various level of your system automatically.
http://validator.hibernate.org
GNU LESSER GENERAL PUBLIC LICENSE
文件下载
文件名 操作
hibernate-validator-3.0.0.GA.jar 下载
hibernate-validator-3.0.0.GA.pom 下载
Apache Maven
<dependency>
  <groupId>org.hibernate</groupId>
  <artifactId>hibernate-validator</artifactId>
  <version>3.0.0.GA</version>
</dependency>
Gradle Groovy
implementation 'org.hibernate:hibernate-validator:3.0.0.GA'
Gradle Kotlin
implementation("org.hibernate:hibernate-validator:3.0.0.GA")
Scala SBT
libraryDependencies += "org.hibernate" % "hibernate-validator" % "3.0.0.GA"
Groovy Grape
@Grapes(
  @Grab(group='org.hibernate', module='hibernate-validator', version='3.0.0.GA')
)
Apache Ivy
<dependency org="org.hibernate" name="hibernate-validator" rev="3.0.0.GA" />
Leiningen
[org.hibernate/hibernate-validator "3.0.0.GA"]
Apache Buildr
'org.hibernate:hibernate-validator:jar:3.0.0.GA'
本项目依赖