Query by Example
注意:前面我们看到,JpaRepository
继承了 QueryByExampleExecutor
,如果你自己的 Repository 继承了 JpaRepository
,那么默认即会拥有 Query by Example 的能力。
使用例子来执行动态查询,不需要编写任何的查询语句。
Query by Example API 包含下列三个部分:
Probe: 实体类的一个 Example
ExampleMatcher
: 匹配规则Example
: 包含 Probe 和ExampleMatcher
,用于创建查询
Query by Example also has several limitations:
No support for nested or grouped property constraints, such as
firstname = ?0 or (firstname = ?1 and lastname = ?2)
.Only supports starts/contains/ends/regex matching for strings and exact matching for other property types.
使用默认 ExampleMatcher
:
默认情况下,null 值属性将被忽略。
自定义 ExampleMatcher
:
Example
是不可变的。
最后更新于