ContactTypeName
電話、電子メールなどの値を持つという名前のドロップダウン フィールドとContact
、ドロップダウン値が選択されている場合に有効な電子メール アドレスの入力フィールドを検証したいという名前の入力フィールドがありますEmail
...
私は次の豆を持っています
@FieldMatch.List({
@FieldMatch(first = "contactDetail", second = "contectTypeName", message = "Please Enter a valid email address")
})
public class Contact {
private int contactId = 0;
@NotNull(message="Please Select a Contact Type")
private Integer contectTypeId;
private String contectTypeName;
@NotNull(message="Please Specify Contact Details")
private String contactDetail;
}
フィールドに値があるcontactDetail
場合、電子メールの正規表現に対してフィールドを検証するカスタム制約を作成しようとしていますcontactTypeName
Email
カスタム制約の次のコードがあります
@Target({TYPE, ANNOTATION_TYPE,METHOD, FIELD})
@Retention(RUNTIME)
@Constraint(validatedBy = FieldMatchValidator.class)
@Documented
public @interface FieldMatch
{
String message() default "{constraints.fieldmatch}";
Class<?>[] groups() default {};
Class<? extends Payload>[] payload() default {};
/**
* @return The first field
*/
String first();
/**
* @return The second field
*/
String second();
/**
* Defines several <code>@FieldMatch</code> annotations on the same element
*
* @see FieldMatch
*/
@Target({TYPE, ANNOTATION_TYPE})
@Retention(RUNTIME)
@Documented
@interface List
{
FieldMatch[] value();
}
}
そしてバリデータのような
public class FieldMatchValidator implements ConstraintValidator<FieldMatch, Object>
{
private String firstFieldName;
private String secondFieldName;
private Pattern pattern;
private Matcher matcher;
private static final String EMAIL_PATTERN =
"^[_A-Za-z0-9-\\+]+(\\.[_A-Za-z0-9-]+)*@"
+ "[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$";
@Override
public void initialize(final FieldMatch constraintAnnotation)
{
firstFieldName = constraintAnnotation.first();
secondFieldName = constraintAnnotation.second();
pattern = Pattern.compile(EMAIL_PATTERN);
}
@Override
public boolean isValid(final Object value, final ConstraintValidatorContext context)
{
try
{
final Object firstObj = BeanUtils.getProperty(value, firstFieldName);//email address
final Object secondObj = BeanUtils.getProperty(value, secondFieldName);//value of the contactType
System.out.println((String) firstObj);
System.out.println((String) secondObj);
if(((String) firstObj == "" || (String) firstObj == null ) && (String) secondObj != "Email"){
return true;
}else{
matcher = pattern.matcher((String) firstObj);
return matcher.matches();
}
//return firstObj == null && secondObj == null || firstObj != null && firstObj.equals(secondObj);
}
catch (final Exception ignore)
{
// ignore
}
return true;
}
}
問題は、フォーム投稿で起動しないことです...Prime Faces
検証するBeanがレンダリングされるモデルダイアログを使用しています
REF: Hibernate Validator (JSR 303) によるクロス フィールド検証
あなたの提案と指導を楽しみにしています