gpt4 book ai didi

java - Spring data jpa存储库通过多元素查找

转载 作者:行者123 更新时间:2023-11-30 02:26:41 26 4
gpt4 key购买 nike

我在我的项目中使用Spring Data JPA。因此,在存储库中,我通过以下方式定义了一个列表:

List<Branch> findByNameContainingAndByTypeContaining(String name, String type)

它在这种情况下有效,但是,在搜索表单中,我得到了超过 10 个搜索条件,这意味着在搜索方法中,它需要超过 10 个元素,并且正确地,它们的字段具有值。

例如:

name: abc
type: primary
enabled: true
createdBy: null
modifiedBy: null
and so more

对于 findBy 方法,如果我发送空白,它可以工作,但为空值。而且,要搜索的字段太多。所以我正在寻找一种更好的方法来搜索这样的表单。在 Grails 框架中,我可以为此创建 nameQueries,但在 Spring JPA 中找不到更好的方法。

有什么想法吗?谢谢。

最佳答案

您可以使用QueryByExample API例如:

Branch branch = new Branch();                          
branch.setName("Foo");
branch.setEnabled(true)

ExampleMatcher matcher = ExampleMatcher.matching();
Example<Branch> example = Example.of(branch, matcher);
branchRepository.findAll(example)

您可以选择包含或忽略 null 值,并指定区分大小写等。

更多示例为here in the Spring Data Docs .

关于java - Spring data jpa存储库通过多元素查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45509616/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com