パスワードフィールドを検証するためにstruts 2アノテーション検証を使用していますが、コーディングが正しいものを与えるとエラーが表示されます
@RequiredStringValidator(message = "Please provide a password")
@StringLengthFieldValidator(minLength="7",maxLength="15",message="The Password should be minmum 7 character and maximum 15 charcters")
@RegexFieldValidator(expression = "^[0-9A-Z]+$", message = "Password atleast have one Capital and one Number")
何か案が?