NetBeans let me choose between three values for the JPA validation strategy: Auto, Callback and None. What does "Auto" mean? Does "Callback" mean the use of @PrePersist, @PreUpdate, and @PreRemove?

Is there a performance hit if I use Auto or Callback if there is no validation to perform?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 4 down vote accepted

The JPA 2.0 Spec (JSR 317) does not require a Bean Validation (JSR-303) implementation. Validation is optional. Thus, javax.persistence.ValidationMode can take different values:

  • Auto (default) - if a validation provider is available, then validation should occur
  • Callback - validation is required and a PersistenceException must be thrown if a provider cannot be obtained
  • None - no validation should be attempted and the lack of a validation provider should not cause an exception

This should answer all your questions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.