gpt4 book ai didi

java - 与错误有关的Bean验证更新消息

转载 作者:行者123 更新时间:2023-12-03 08:48:58 25 4
gpt4 key购买 nike

我有以下模型课

 public class ContactDetail {
@NotNull(message="StartNum cannot be null")
private int startNum;
@NotNull(message="EndNum cannot be null")
private int endNum; }

我将如何验证这些字段的范围大小?
我尝试添加
public int maxRangeSize=1000;

@AssertTrue(message="Range size is invalid" )
public boolean isRangeValid(){

Integer rangeSize= endNum-startNum;

if(rangeSize < 0 || rangeSize >= maxRangeSize)
{
return false;
}
return true;

}

但我想知道是否有一种方法可以在验证失败消息中显示哪个startnum和endnum甚至是设置的maxrangesize,因此该错误对用户有用吗?

最佳答案

试试这个例子:

@Digits(integer = 3, fraction = 0, message = "The value of age can not be more than 3 digits")
@Range(min = 10, max = 150)
private int age;

关于java - 与错误有关的Bean验证更新消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46474188/

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