gpt4 book ai didi

java - hibernate 4 中的 org.hibernate.validator.InvalidValue

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:55:48 26 4
gpt4 key购买 nike

我正在尝试将我的应用程序从 hibernate 3 迁移到 4,我也在使用 Seam 2.2,但出现编译错误 The type org.hibernate.validator.InvalidValue cannot be resolved。它是从所需的 .class 文件中间接引用的

StatusMessages.instance().add 以某种方式间接引用了 hibernate 。

if(this.acctNum==null || this.acctNum.trim().length()==0) {
StatusMessages.instance().add(StatusMessage.Severity.ERROR, " Please enter an account number");
return null;
}

最佳答案

我已经通过在 pom.xml

中添加以下依赖项解决了这个问题
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-legacy</artifactId>
<version>4.0.2.GA</version>
<scope>provided</scope>
</dependency>

关于java - hibernate 4 中的 org.hibernate.validator.InvalidValue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34907510/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com