EntityGraph 関連のアノテーション内にある以下のような未解決の属性を報告します。

例:



  @Entity
  @NamedEntityGraph(name = "entity-graph", ...)
  public class JavaEntity {
    public void foo() {
      Persistence.createEntityManagerFactory("")
        .createEntityManager()
        .getEntityGraph("unknown-entity-graph"); // 未解決の参照
    }
  }