Spring Data JPA:示例查询? [英] Spring Data JPA: Query by Example?

查看:30
本文介绍了Spring Data JPA:示例查询?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 Spring Data JPA 我可以做一个 示例查询 将特定实体实例用作搜索条件?

Using Spring Data JPA can I do a query by example where a particular entity instance is used as the search criteria?

例如(没有双关语意),如果我有一个 Person 实体看起来像:

For example (no pun intended), if I have a Person entity that looks like:

@Entity
public class Person {
  private String firstName;
  private String lastName;
  private boolean employed;
  private LocalDate dob;
  ...
}

我可以找到所有姓氏为 Smith 且出生于 1977 年 1 月 1 日的雇员,例如:

I could find all employed persons with a last name of Smith born on January 1, 1977 with an example:

Person example = new Person();
example.setEmployed(true);
example.setLastName("Smith");
example.setDob(LocalDate.of(1977, Month.JANUARY, 1));
List<Person> foundPersons = personRepository.findByExample(example);

推荐答案

Spring 数据依赖于 JPA 和 EntityManager,而不是 Hibernate 和 Session,因此您没有现成的 findByExample.您可以使用 spring 数据自动查询创建并使用以下签名在您的存储库中编写一个方法:

Spring data relies on top of JPA and EntityManager, not Hibernate and Session, and as such you do not have findByExample out of the box. You can use the spring data automatic query creation and write a method in your repository with the following signature:

List<Person> findByEmployedAndLastNameAndDob(boolean employed, String lastName, LocalDate dob);

这篇关于Spring Data JPA:示例查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆