Iam using Hibernate Validator for validation of data. I have used @Range attribute for validating a particular field.
@Range(min=0,max=100)
private String amount;
This is fine but can i dynamically change the values of min and max instead of hard coding. I mean can i do something like:
@Range(min=${},max=${})
private String amount;
Annotations in Java uses constants as parameters. You Cannot change them dynamically.
Compile constants can only be primitives and Strings.Check this link.
IF you want to make it configurable you can declare them as static final.
For Example:
and then assign in annotation.
The value for annotation attribute must be a constant expression.