JPA Annotation

NamedEntityGraph

Target: TYPE
Implemented Interfaces:
Annotation

Used to specify the path and boundaries for a find operation or query.
Since:
JPA 2.1

Public Annotation Attributes

(Optional) A list of attributes of the entity that are included in this graph.
Since:
JPA 2.1
boolean includeAllAttributes default false
(Optional) Includes all of the attributes of the annotated entity class as attribute nodes in the NamedEntityGraph without the need to explicitly list them.
Included attributes can still be fully specified by an attribute node referencing a subgraph.
Since:
JPA 2.1
String name default ""
(Optional) The name of the entity graph.
Defaults to the entity name of the root entity.
Since:
JPA 2.1
(Optional) A list of subgraphs that will add additional attributes for subclasses of the annotated entity class to the entity graph.
Specified attributes from superclasses are included in subclasses.
Since:
JPA 2.1
(Optional) A list of subgraphs that are included in the entity graph.
These are referenced by name from NamedAttributeNode definitions.
Since:
JPA 2.1