Open Questions - skatscher/pro_jpa2_book GitHub Wiki
Open Questions:
-
Does the default access mode refer only to one entity or to the whole entity inheritance hierarchy? => default access mode has entity class boundary inclusive subclasses. Can it be overwritten?
-
Why is package visibility not allowed for property access mode? => Property access allows visibility public and protected. Package more restricted than protected, as there is no visibility for subclasses.