When they appear on a field/getter of an @Entity, what is the difference between them? (I persist the Entity through Hibernate).
What framework and/or specification each one of them belongs to?
@NotNull is located within javax.validation.constraints. In its javax.validation.constraints.NotNull javadoc it says "The annotated element must not be null" but it does not speak of the element's representation in the database, so why would it add the constraint "Nullable=false" to the column...?
Thanks!