Jakarta Persistence (JPA) Annotation Type
jakarta.persistence.NamedEntityGraph
- Implemented Interfaces:
Annotation
- Target:
- Type
Defines a named entity graph. This annotation must be applied to the root entity of the graph, and specifies the limits of the graph of associated attributes and entities fetched when an operation which retrieves an instance or instances of the root entity is executed.
A reference to a named entity graph may be obtained by calling EntityManager.getEntityGraph, and may be passed to EntityManager.find.
- Since:
- Jakarta Persistence (JPA) 2.1
Annotation Elements
String nameIf no name is explicitly specified, the name defaults to the entity name of the annotated root entity. Entity graph names must be unique within the persistence unit.
- Default:
- ""
- Since:
- Jakarta Persistence (JPA) 1.0
- Default:
- {}
- Since:
- Jakarta Persistence (JPA) 1.0
boolean includeAllAttributesIncluded attributes can still be fully specified by an attribute node referencing a subgraph.
- Default:
- false
- Since:
- Jakarta Persistence (JPA) 1.0
These are referenced by name from NamedAttributeNode definitions.
- Default:
- {}
- Since:
- Jakarta Persistence (JPA) 1.0
Specified attributes from superclasses are included in subclasses.
- Default:
- {}
- Since:
- Jakarta Persistence (JPA) 1.0
Additional JDK methods inherited from java.lang.annotation.Annotation
annotationType(), equals(Object), hashCode(), toString()