<tfoot id='46GbK'></tfoot>

  • <small id='46GbK'></small><noframes id='46GbK'>

      <bdo id='46GbK'></bdo><ul id='46GbK'></ul>

    <legend id='46GbK'><style id='46GbK'><dir id='46GbK'><q id='46GbK'></q></dir></style></legend>

        <i id='46GbK'><tr id='46GbK'><dt id='46GbK'><q id='46GbK'><span id='46GbK'><b id='46GbK'><form id='46GbK'><ins id='46GbK'></ins><ul id='46GbK'></ul><sub id='46GbK'></sub></form><legend id='46GbK'></legend><bdo id='46GbK'><pre id='46GbK'><center id='46GbK'></center></pre></bdo></b><th id='46GbK'></th></span></q></dt></tr></i><div id='46GbK'><tfoot id='46GbK'></tfoot><dl id='46GbK'><fieldset id='46GbK'></fieldset></dl></div>

      1. FetchMode join 对 Spring JPA 存储库中的 ManyToMany 关系没有影响

        FetchMode join makes no difference for ManyToMany relations in spring JPA repositories(FetchMode join 对 Spring JPA 存储库中的 ManyToMany 关系没有影响)

        <small id='GSmrI'></small><noframes id='GSmrI'>

          <tfoot id='GSmrI'></tfoot>

                <i id='GSmrI'><tr id='GSmrI'><dt id='GSmrI'><q id='GSmrI'><span id='GSmrI'><b id='GSmrI'><form id='GSmrI'><ins id='GSmrI'></ins><ul id='GSmrI'></ul><sub id='GSmrI'></sub></form><legend id='GSmrI'></legend><bdo id='GSmrI'><pre id='GSmrI'><center id='GSmrI'></center></pre></bdo></b><th id='GSmrI'></th></span></q></dt></tr></i><div id='GSmrI'><tfoot id='GSmrI'></tfoot><dl id='GSmrI'><fieldset id='GSmrI'></fieldset></dl></div>
                <legend id='GSmrI'><style id='GSmrI'><dir id='GSmrI'><q id='GSmrI'></q></dir></style></legend>
                • <bdo id='GSmrI'></bdo><ul id='GSmrI'></ul>
                    <tbody id='GSmrI'></tbody>
                  本文介绍了FetchMode join 对 Spring JPA 存储库中的 ManyToMany 关系没有影响的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试这样做:

                  //...
                  class Person {
                      @ManyToMany(fetch = FetchType.EAGER)
                      @Fetch(FetchMode.JOIN)
                      private Set<Group> groups;
                  //...
                  }
                  

                  当我通过 Spring JPA 存储库执行 personRepository.findAll(); 时,它会生成 n+1 个查询,就好像我没有设置任何 @Fetch.(一个查询首先获取所有人员,然后每个人一个查询获取组).

                  it generates n+1 queries when I do personRepository.findAll(); through a Spring JPA repository, just as if I didn't have any @Fetch set. (One query first to get all the persons, and then one query per person to fetch the groups).

                  虽然使用 @Fetch(FetchMode.SUBSELECT) 有效!它只生成 2 个查询.(所有人一份,然后团体一份).所以hibernate对一些获取参数做出反应,而不是JOIN.

                  Using @Fetch(FetchMode.SUBSELECT) works, though! It only generates 2 queries. (One for all persons, and then one for the groups). So hibernate reacts to some fetch parameters, just not the JOIN.

                  我也尝试过删除 EAGER 获取但没有成功.

                  I have also tried removing the EAGER fetching with no luck.

                  //...
                  class Person {
                      @ManyToMany()
                      @Fetch(FetchMode.JOIN)
                      private Set<Group> groups;
                  //...
                  }
                  

                  我正在使用 Spring JPA,这是我的存储库的代码:

                  I am using Spring JPA, and this is the code for my repository:

                  public interface PersonRepository extends JpaRepository<Person, Long> {
                  }
                  

                  JOIN 只是不能通过 Spring JPA 工作,还是我做错了什么?

                  Does JOIN just not work through Spring JPA, or am I doing something wrong?

                  推荐答案

                  浏览许多论坛和博客来解决您的问题(我想您可能在发布之前已经这样做了)我也认为

                  Going through many forums and blogs to read for your problem (I guess you might have done that before posting it here) I too think that

                  @Fetch(FetchMode.JOIN) 如果使用 Query 接口将被忽略(例如:session.createQuery()),但如果你使用它将被正确使用标准界面.

                  @Fetch(FetchMode.JOIN) will be ignored if you use the Query interface (e.g.: session.createQuery()) but it will be properly used if you use the Criteria interface.

                  这实际上是 Hibernate 中从未解决的错误.它是不幸的是,因为很多应用程序使用查询接口和无法轻松迁移到 Criteria 界面.

                  This is practically a bug in Hibernate which was never resolved. It is unfortunate because a lot of applications use the Query interface and cannot be migrated easily to the Criteria interface.

                  如果您使用查询接口,您总是必须添加 JOIN FETCH手动将语句写入 HQL.

                  If you use the Query interface you always have to add JOIN FETCH statements into the HQL manually.

                  参考资料休眠论坛春季论坛类似问题1

                  这篇关于FetchMode join 对 Spring JPA 存储库中的 ManyToMany 关系没有影响的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
                  How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
                  Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
                  Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
                  How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
                  How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)
                      <tbody id='Wbplt'></tbody>
                      <bdo id='Wbplt'></bdo><ul id='Wbplt'></ul>
                      • <legend id='Wbplt'><style id='Wbplt'><dir id='Wbplt'><q id='Wbplt'></q></dir></style></legend>
                        • <tfoot id='Wbplt'></tfoot>
                          <i id='Wbplt'><tr id='Wbplt'><dt id='Wbplt'><q id='Wbplt'><span id='Wbplt'><b id='Wbplt'><form id='Wbplt'><ins id='Wbplt'></ins><ul id='Wbplt'></ul><sub id='Wbplt'></sub></form><legend id='Wbplt'></legend><bdo id='Wbplt'><pre id='Wbplt'><center id='Wbplt'></center></pre></bdo></b><th id='Wbplt'></th></span></q></dt></tr></i><div id='Wbplt'><tfoot id='Wbplt'></tfoot><dl id='Wbplt'><fieldset id='Wbplt'></fieldset></dl></div>

                          <small id='Wbplt'></small><noframes id='Wbplt'>