JPA Annotation Attribute
in jakarta.persistence.Basic

FetchType fetch default FetchType.EAGER


(Optional) Whether the value of the field or property should be lazily loaded or must be eagerly fetched.
  • The EAGER strategy is a requirement on the persistence provider runtime that the associated entity must be eagerly fetched.
  • The LAZY strategy is a hint to the persistence provider runtime.

If not specified, defaults to EAGER.

Since:
JPA 1.0