#153 - Add examples for Query by Example functionality with JPA and MongoDB.
Original pull request: #154.
This commit is contained in:
committed by
Oliver Gierke
parent
1fe9aaeefa
commit
beabdf8a79
11
jpa/query-by-example/README.md
Normal file
11
jpa/query-by-example/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# Spring Data JPA - Query-by-Example (QBE) example
|
||||
|
||||
This project contains samples of Query-by-Example of Spring Data JPA.
|
||||
|
||||
## Support for Query-by-Example
|
||||
|
||||
Query by Example (QBE) is a user-friendly querying technique with a simple interface. It allows dynamic query creation and does not require to write queries containing field names. In fact, Query by Example does not require to write queries using JPA-QL at all.
|
||||
|
||||
An `Example` takes a data object (usually the entity object or a subtype of it) and a specification how to match properties. You can use Query by Example with JPA Repositories.
|
||||
|
||||
This example contains a test class to illustrate Query-by-Example with a Repository in `UserRepositoryIntegrationTests`.
|
||||
Reference in New Issue
Block a user