3

我正在尝试在DoubleHibernate 验证 API 的帮助下验证一个字段 - 使用@Digits注释

<areaLength>0</areaLength>
<buildArea>0.0</buildArea>

@Digits(integer=10, fraction=0)
private Long areaLength = null; // Here areaLength = 0 

@Digits(integer=20, fraction=0)
private Double buildArea = null; // Here buildArea = 0.0

这里areaLength没有违反约束,

buildArea正在违反约束,说

buildArea numeric value out of bounds (<20 digits>.<0 digits> expected)

10.0 没有违规,但 0.0 违规。

有人知道原因吗?

完整代码:

public class ValidationTest {

    public static void main(String a[]) {
        Vehicle vehBean = new Vehicle();
        try {
            if (vehBean != null) {
                ValidatorFactory factory = Validation.buildDefaultValidatorFactory();
                Validator validator = factory.getValidator();
                Set<ConstraintViolation<Vehicle>> violations = validator.validate(vehBean);
                if (violations!= null && violations.size() > 0) {
                    for (ConstraintViolation<Vehicle> violation : violations) {
                        System.out.println("Validation problem : " + violation.getMessage());
                    }
                }
            }
        } catch(Exception e) {
            throw e;
        }
    }
}

class Vehicle {
    @Digits(integer=20, fraction=0)
    private Double buildArea = 0.0; 
}

验证问题:数值超出范围(<20 位>.<0 位> 预期)

4

4 回答 4

4

或者,您可以尝试;

@DecimalMin("0.00") 
@DecimalMax("99999999999999999.00") 
于 2017-03-14T16:54:24.680 回答
3

您已将小数部分的位数限制为0不允许小数,即使您没有任何小数,0.0但您应该确认是这种情况,我认为您的Double值是0 < x < 0.1您也可以尝试使用Floatfor相同的字段,并检查是否有相同的问题?

字段或属性的值必须是指定范围内的数字。integer 元素指定数字的最大整数位数,fraction 元素指定数字的最大小数位数

资源

于 2017-03-14T13:30:08.677 回答
1

我认为 buildArea 的主要问题是它的数据类型 Double。

https://www.owasp.org/index.php/Bean_Validation_Cheat_Sheet

上面的链接说@Digits 允许的数据类型不支持 Double。

于 2018-10-15T10:34:16.140 回答
1

我不明白。如果您在小数部分有 1 位数字,例如0.0,为什么要限制@Digitswith fraction=0?该限制希望确保您没有小数,因此在您的情况下只有整数有效。

这是有效的:

@Digits(integer=10, fraction=1)
private Double double1 = 0.0;

这也是有效的:

@Digits(integer=10, fraction=0)
private Integer integer1 = 0;

但这是无效的:

@Digits(integer=10, fraction=0)
private Double double1 = 0.0; // Double not allowing a fraction part = integer, so you must change type here.
于 2019-04-08T14:02:04.720 回答