org.hibernate.query.Query.applyFetchGraph()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(214)

本文整理了Java中org.hibernate.query.Query.applyFetchGraph方法的一些代码示例,展示了Query.applyFetchGraph的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.applyFetchGraph方法的具体详情如下:
包路径:org.hibernate.query.Query
类名称:Query
方法名:applyFetchGraph

Query.applyFetchGraph介绍

[英]Apply the given graph using GraphSemantic#FETCH
[中]使用GraphSemantic#FETCH应用给定的图形

代码示例

代码示例来源:origin: hibernate/hibernate-orm

  1. /**
  2. * Convenience method for {@linkplain Query#getResultList() executing} the Query using the
  3. * given EntityGraph
  4. *
  5. * @param query The JPA Query
  6. * @param graph The graph to apply
  7. *
  8. * @apiNote operates on the assumption that the "default" semantic for an
  9. * entity graph applied to a Query is {@link GraphSemantic#FETCH}. This is simply
  10. * knowledge from JPA EG discussions, nothing that is specifically mentioned or
  11. * discussed in the spec.
  12. */
  13. @SuppressWarnings({"unused", "unchecked"})
  14. public static List executeList(Query query, EntityGraph graph) {
  15. return query.unwrap( org.hibernate.query.Query.class )
  16. .applyFetchGraph( (RootGraph) graph )
  17. .list();
  18. }

代码示例来源:origin: org.hibernate.orm/hibernate-core

  1. /**
  2. * Convenience method for {@linkplain Query#getResultList() executing} the Query using the
  3. * given EntityGraph
  4. *
  5. * @param query The JPA Query
  6. * @param graph The graph to apply
  7. *
  8. * @apiNote operates on the assumption that the "default" semantic for an
  9. * entity graph applied to a Query is {@link GraphSemantic#FETCH}. This is simply
  10. * knowledge from JPA EG discussions, nothing that is specifically mentioned or
  11. * discussed in the spec.
  12. */
  13. @SuppressWarnings({"unused", "unchecked"})
  14. public static List executeList(Query query, EntityGraph graph) {
  15. return query.unwrap( org.hibernate.query.Query.class )
  16. .applyFetchGraph( (RootGraph) graph )
  17. .list();
  18. }

相关文章