4

我想知道不是包含(等于或大于)的休眠验证器@Min,有没有办法表达“严格大于”一个数字?

非常感谢 :)

4

2 回答 2

8

If you work with Bean Validation 1.1 (part of Java EE 7) you may use @DecimalMin instead which has an additional attribute, inclusive, which controls whether "strictly greater than" or "greater than or equals to" semantics are used.

于 2013-10-07T06:33:23.993 回答
3

没有内置约束。您将需要自定义约束。但是,如果您正在处理整数,则始终可以将 @Min 与您的限制 + 1 一起使用。

于 2013-10-04T11:09:20.647 回答