Using bean validation like:
@Size(max = 5)
private String name;
How do I retrieve the max
value to use within my JSF site? For example to set maxlength value in input text component.
Using bean validation like:
@Size(max = 5)
private String name;
How do I retrieve the max
value to use within my JSF site? For example to set maxlength value in input text component.