You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/main/asciidoc/query-by-example.adoc
+32-2
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,15 @@ In fact, Query by Example does not require you to write queries by using store-s
13
13
[[query-by-example.usage]]
14
14
== Usage
15
15
16
-
The Query by Example API consists of three parts:
16
+
The Query by Example API consists of four parts:
17
17
18
18
* Probe: The actual example of a domain object with populated fields.
19
19
* `ExampleMatcher`: The `ExampleMatcher` carries details on how to match particular fields.
20
20
It can be reused across multiple Examples.
21
21
* `Example`: An `Example` consists of the probe and the `ExampleMatcher`.
22
22
It is used to create the query.
23
+
* `FetchableFluentQuery`: A `FetchableFluentQuery` offers a fluent API, that allows further customization of a query derived from an `Example`.
24
+
Using the fluent API allows you to specify ordering, projection and result processing for your query.
23
25
24
26
Query by Example is well suited for several use cases:
25
27
@@ -56,7 +58,8 @@ The preceding example shows a simple domain object.
56
58
You can use it to create an `Example`.
57
59
By default, fields having `null` values are ignored, and strings are matched by using the store specific defaults.
58
60
59
-
NOTE: Inclusion of properties into a Query by Example criteria is based on nullability. Properties using primitive types (`int`, `double`, …) are always included unless <<query-by-example.matchers,ignoring the property path>>.
61
+
NOTE: Inclusion of properties into a Query by Example criteria is based on nullability.
62
+
Properties using primitive types (`int`, `double`, …) are always included unless <<query-by-example.matchers,ignoring the property path>>.
60
63
61
64
Examples can be built by either using the `of` factory method or by using <<query-by-example.matchers,`ExampleMatcher`>>. `Example` is immutable.
Example<Person> example = Example.of(person, matcher); <7>
116
120
117
121
----
122
+
118
123
<1> Create a new instance of the domain object.
119
124
<2> Set properties.
120
125
<3> Create an `ExampleMatcher` to expect all values to match.
@@ -186,3 +191,28 @@ The following table describes the scope of the various `ExampleMatcher` settings
186
191
| Property path
187
192
188
193
|===
194
+
195
+
[[query-by-example.fluent]]
196
+
== Fluent API
197
+
198
+
`QueryByExampleExecutor` offers one more method, which we did not mention so far: `<S extends T, R> R findBy(Example<S> example, Function<FluentQuery.FetchableFluentQuery<S>, R> queryFunction)`.
199
+
As with other methods it executes a query derived from an `Example`.
200
+
But with the second argument you can control aspects of that execution, that you can't control dynamically otherwise.
201
+
You do so by invoking the various methods of the `FetchableFluentQuery` in the second argument.
202
+
`sortBy` allows you to specify an ordering for your result.
203
+
`as` allows you to specify the type to which you want the result to be transformed.
204
+
`project` limits the attributes queried.
205
+
`first`, `firstValue`, `one`, `oneValue`, `all`, `page`, `stream`, `count`, `exists` define what kind of result you'll get and also how the query behaves when more than the expected number of results are available.
206
+
207
+
208
+
.Use the fluent API to get the last of potentially many results, ordered by lastname.
209
+
====
210
+
[source,java]
211
+
----
212
+
Optional<Person> match = repository.findBy(example,
0 commit comments