1.

What is the purpose of StringLengthFieldValidator annotation?

Answer»

This validator checks that a String field is of the right length. It assumes that the field is a String. If neither minLength nor maxLength is set, nothing will be done.

public class Employee extends ActionSupport{   StringLengthFieldValidator(message = "Default message",    key = "i18n.key", shortCircuit = true,    trim = true, minLength = "5",  maxLength = "12")   public String getName() {       return name;   }}


Discussion

No Comment Found