我想知道不是包含(等于或大于)的休眠验证器@Min,有没有办法表达“严格大于”一个数字?
非常感谢 :)
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.
没有内置约束。您将需要自定义约束。但是,如果您正在处理整数,则始终可以将 @Min 与您的限制 + 1 一起使用。