Spring Data JPAを使用すると、特定のエンティティインスタンスが検索条件として使用される 例によるクエリ を実行できますか?
たとえば、次のようなPerson
エンティティがある場合(しゃれはありません):
@Entity
public class Person {
private String firstName;
private String lastName;
private boolean employed;
private LocalDate dob;
...
}
1977年1月1日に生まれたスミスの姓を持つすべての雇用者を、例とともに見つけることができました。
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データはHibernateとSessionではなく、JPAとEntityManagerに依存しているため、すぐに使用できるfindByExampleはありません。スプリングデータの自動クエリ作成を使用して、次の署名を使用してリポジトリにメソッドを記述できます。
List<Person> findByEmployedAndLastNameAndDob(boolean employed, String lastName, LocalDate dob);
これは、Spring Dataで可能になりました。チェックアウト http://docs.spring.io/spring-data/jpa/docs/current/reference/html/#query-by-example
Person person = new Person();
person.setLastname("Smith");
Example<Person> example = Example.of(person);
List<Person> results = personRepository.findAll(example);
これには最新の2016バージョンが必要です。
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.10.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
<version>1.12.1.RELEASE</version>
</dependency>
https://github.com/paulvi/com.example.spring.findbyexample を参照してください
SpringデータのSpecification
インターフェイスを使用して、クエリの使用を例によって概算することができました。 PersonSpec
を実装し、Specification
によって返されるPredicate
をセットアップするために「サンプル」の人を必要とするSpecification
クラスは次のとおりです。
public class PersonSpec implements Specification<Person> {
private final Person example;
public PersonSpec(Person example) {
this.example = example;
}
@Override
public Predicate toPredicate(Root<Person> root, CriteriaQuery<?> cq, CriteriaBuilder cb) {
List<Predicate> predicates = new ArrayList<>();
if (StringUtils.isNotBlank(example.getLastName())) {
predicates.add(cb.like(cb.lower(root.get(Person_.lastName)), example.getLastName().toLowerCase() + "%"));
}
if (StringUtils.isNotBlank(example.getFirstName())) {
predicates.add(cb.like(cb.lower(root.get(Person_.firstName)), example.getFirstName().toLowerCase() + "%"));
}
if (example.getEmployed() != null) {
predicates.add(cb.equal(root.get(Person_.employed), example.getEmployed()));
}
if (example.getDob() != null) {
predicates.add(cb.equal(root.get(Person_.dob), example.getDob()));
}
return andTogether(predicates, cb);
}
private Predicate andTogether(List<Predicate> predicates, CriteriaBuilder cb) {
return cb.and(predicates.toArray(new Predicate[0]));
}
}
リポジトリは単純です:
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
public interface PersonRepository extends JpaRepository<Person, Long>, JpaSpecificationExecutor {}
使用例:
Person example = new Person();
example.setLastName("James");
example.setEmployed(true);
PersonSpec personSpec = new PersonSpec(example);
List<Person> persons = personRepository.findAll(personSpec);