1
클래스 수준 유효성 검사를 사용하는 것 외에도 유효성 검사기 클래스 내에서 필드 수준 유효성 검사 주석의 부모 콩에 액세스 할 수 있습니까? 예를 들어빈 검증 필드 레벨 ConstraintValidator에서 대상 빈에 액세스 할 수있는 방법이 있습니까?
:
public class CustomValidator implements ConstraintValidator<CustomValidation, String> {
@Override
public void initialize(final CustomValidation constraintAnnotation) {
}
@Override
public boolean isValid(final String fieldValue, final ConstraintValidatorContext context) {
// is there a way to access the parent object here?
}
}