How is it possible to know, which data annotations are supported by Spring JPA
?
For example, is @Min
supported?
@Min(value = 0)
private double calories;
Anyway, how can one declare CHECK
constraint?
UPDATE
Please read about CHECK constraint. Also note, that @Min
is a hyperlink.