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

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

    • <bdo id='LxGe1'></bdo><ul id='LxGe1'></ul>
    <tfoot id='LxGe1'></tfoot>

    1. 对多个字段使用 findBy 并对所有字段使用包含子句

      时间:2023-09-30
      <tfoot id='OmtTL'></tfoot>
          <bdo id='OmtTL'></bdo><ul id='OmtTL'></ul>
          • <legend id='OmtTL'><style id='OmtTL'><dir id='OmtTL'><q id='OmtTL'></q></dir></style></legend>

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

                <tbody id='OmtTL'></tbody>

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

                本文介绍了对多个字段使用 findBy 并对所有字段使用包含子句的 Spring Data JPA 方法是什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我有一个名为 Profile 的类及其 JPA 存储库 ProfileRepo我正在尝试使用 findBy 方法来查找使用名字或中间名或姓氏以及包含子句的名称.

                I have a class called Profile and its JPA repository ProfileRepo I'm trying to use findBy method to find names using first name or middle name or last name and also using containing clause.

                public class Profile{
                    private String firstName;
                    private String middleName;
                    private String lastName;
                
                    //getters and setters
                }
                

                我在 JPA 存储库中使用以下查询,但它不接受该方法

                Am using the following query in the JPA repository but it is not accepting the method

                List<Profile> findByLastNameContainingOrFirstNameContainingOrMiddleNameContainingAllIgnoreCase(String firstName,
                        String lastName,String midName);
                

                请帮忙.

                推荐答案

                试试这个:

                List<Profile> findByFirstNameIgnoreCaseContainingOrLastNameIgnoreCaseContainingOrMidNameIgnoreCaseContaining(String firstName, String lastName, String midName);
                

                或者这个:

                @Query("select p from Profile p where upper(p.firstName) like concat('%', upper(?1), '%') or upper(p.lastName) like concat('%', upper(?2), '%') or upper(p.midName) like concat('%', upper(?3), '%')")
                List<Profile> getByNames(String firstName, String lastName, String midName);
                

                这篇关于对多个字段使用 findBy 并对所有字段使用包含子句的 Spring Data JPA 方法是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:db2jcc4.jar 无效参数:未知列名 下一篇:java.lang.ClassNotFoundException:在 Worklight 平台或项目中

                相关文章

                最新文章

              1. <small id='1sDKP'></small><noframes id='1sDKP'>

                <tfoot id='1sDKP'></tfoot>
                <legend id='1sDKP'><style id='1sDKP'><dir id='1sDKP'><q id='1sDKP'></q></dir></style></legend>

                    • <bdo id='1sDKP'></bdo><ul id='1sDKP'></ul>

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