JPA 2.0/Hibernate를 사용하여 필드 조합 유효성 검사
JPA 2.0/Hibernate에서는 필드 조합이 필요한 상황에 직면할 수 있습니다. 검증을 받다. 예를 들어, getValue1() 및 getValue2() getter가 있는 모델이 있을 수 있으며 두 getter가 모두 null이 아닌 경우에만 모델이 유효한 것으로 간주됩니다.
이러한 유형의 유효성 검사를 수행하려면 클래스를 활용하면 됩니다. Bean Validation에서 제공하는 수준의 제약 조건입니다. 클래스 수준 제약 조건은 개별 속성이 아닌 전체 개체 인스턴스에서 작동합니다.
클래스 수준 제약 조건 주석 정의
먼저 클래스 수준 제약 조건 주석을 정의합니다. @AddressAnnotation:
<code class="java">@Constraint(validatedBy = MultiCountryAddressValidator.class) @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface AddressAnnotation { String message() default "{error.address}"; Class<?>[] groups() default {}; Class<? extends Payload>[] payload() default {}; }</code>
제약 유효성 검사기 구현
다음으로 필드 조합을 확인하는 MultiCountryAddressValidator와 같은 제약 유효성 검사기를 구현합니다.
<code class="java">public class MultiCountryAddressValidator implements ConstraintValidator<AddressAnnotation, Address> { public void initialize(AddressAnnotation constraintAnnotation) {} public boolean isValid(Address object, ConstraintValidatorContext context) { Country country = address.getCountry(); // Validation logic based on country-specific rules return isValid; } }</code>
클래스 주석 달기
마지막으로 클래스 수준 제약 조건 주석으로 유효성을 검사하려는 클래스에 주석을 답니다.
<code class="java">@AddressAnnotation public class MyModel { // ... }</code>
이를 활용하여 클래스 수준 제약 조건을 사용하면 JPA 2.0/Hibernate에서 필드 조합을 효과적으로 검증하여 모델의 무결성을 보장할 수 있습니다.
위 내용은 JPA 2.0/Hibernate에서 클래스 수준 제약 조건을 사용하여 필드 조합을 검증하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!