persistence icon indicating copy to clipboard operation
persistence copied to clipboard

jakarta.annotation.Nonnull should imply optional=false

Open gavinking opened this issue 1 year ago • 0 comments

We should allow:

@Nonnull
String name;

as an alternative to:

@Basic(optional = false)
String name;

and similarly for @ManyToOne and @OneToOne.

gavinking avatar Apr 20 '24 22:04 gavinking