Framework: JQuery, Spring, Hibernate, Hibernate Validator (проверка бинов JSR-303)
Платформа: Windows
Я пытаюсь определить пользовательское ограничение @IdMustExist с помощью JSR 303-Bean Validation. Цель ограничения - проверить, существует ли введенное значение идентификатора в связанной таблице. Я получаю сообщение об ошибке «javax.validation.UnexpectedTypeException: не найден валидатор для типа: com.mycompany.myapp.domain.package1.class1».
Если я помещаю @IdMustExist в определение поля Class1 (как указано в примере кода ниже), я получаю вышеуказанную ошибку. Но если я наложу ограничение @IdMustExist на поле String, я не получу вышеуказанную ошибку. Мой код падает в IdMustExistValidator.java. Я не понимаю, почему Hibernate может найти Validator для класса 'String', но не для класса домена 'Class1'.
Мои определения классов следующие.
Class2.java
@Entity
@Table
public class Class2 extends BaseEntity {
/**
* Validation: Class1 Id must exist.
*/
@ManyToOne
@JoinColumn(name="Class1Id")
@IdMustExist(entity=Class1.class)
private Class1 class1;
..
IdMustExist.java
@Required
@Target( { METHOD, FIELD, ANNOTATION_TYPE })
@Retention(RUNTIME)
@Constraint(validatedBy = IdMustExistValidator.class)
@Documented
@ReportAsSingleViolation
public @interface IdMustExist {
String message() default "{com.mycompany.myapp.domain.validation.constraints.idmustexist}";
Class<?>[] groups() default {};
Class<? extends Payload>[] payload() default {};
/**
* The entity class that contains the id property.
*/
Class<?> entity();
/**
* The property of the entity we want to validate for existence. Default value is "id"
*/
String idProperty() default "id";
}
IdMustExistValidator.java (обратите внимание, что в дизайне этого класса есть ошибки)
public class IdMustExistValidator implements ConstraintValidator<IdMustExist, Serializable> {
/**
* Retrieve the entity class name and id property name
*/
public void initialize(IdMustExist idMustExist) {
if (idMustExist.entity() != null)
entity = idMustExist.entity();
idProperty = idMustExist.idProperty();
}
/**
* Retrieve the entity for the given entity class and id property.
* If the entity is available return true else false
*/
public boolean isValid(Serializable property, ConstraintValidatorContext cvContext) {
logger.debug("Property Class = {}", property.getClass().getName());
logger.debug("Property = {}", property);
List resultList = commonDao.getEntityById(entity.getName(), idProperty);
return resultList != null && resultList.size() > 0;
}
private Class<?> entity;
private String idProperty;
@Autowired
private CommonDao commonDao;
private final Logger logger = LoggerFactory.getLogger(IdMustExistValidator.class);
}