@NamedAttributeNode 내 value@NamedAttributeNode 내 명명된 하위 그래프@NamedEntityGraph 내 name예:
@Entity
@NamedEntityGraph(name = "entity-graph", ...)
public class JavaEntity {
public void foo() {
Persistence.createEntityManagerFactory("")
.createEntityManager()
.getEntityGraph("unknown-entity-graph"); // 해결되지 않은 참조
}
}