persistence
persistence copied to clipboard
jakarta.annotation.Nonnull should imply optional=false
We should allow:
@Nonnull
String name;
as an alternative to:
@Basic(optional = false)
String name;
and similarly for @ManyToOne and @OneToOne.