且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

由于Bean验证API导致Hibernate Validator无法启动

更新时间:2022-10-14 21:42:53

Try adding this dependency to your pom.xml

<dependency>
    <groupId>javax.validation</groupId>
    <artifactId>validation-api</artifactId>
    <version>1.0.0.GA</version>
</dependency>

If not consider using hibernate-validator4.2.0.Final I have that one in my config and it is working fine.

相关阅读

技术问答最新文章