springdata jpa使用Example快速實(shí)現(xiàn)動(dòng)態(tài)查詢功能
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 store-specific query languages at all.
谷歌翻譯:
按例查詢(QBE)是一種用戶界面友好的查詢技術(shù)。 它允許動(dòng)態(tài)創(chuàng)建查詢,并且不需要編寫包含字段名稱的查詢。 實(shí)際上,按示例查詢不需要使用特定的數(shù)據(jù)庫(kù)的查詢語(yǔ)言來(lái)編寫查詢語(yǔ)句。
Example api的組成
Probe:含有對(duì)應(yīng)字段的實(shí)例對(duì)象。ExampleMatcher:ExampleMatcher攜帶有關(guān)如何匹配特定字段的詳細(xì)信息,相當(dāng)于匹配條件。Example:由Probe和ExampleMatcher組成,用于查詢。
限制
- 屬性不支持嵌套或者分組約束,比如這樣的查詢 firstname = ?0 or (firstname = ?1 and lastname = ?2)
- 靈活匹配只支持字符串類型,其他類型只支持精確匹配
Limitations
1. No support for nested/grouped property constraints like firstname = ?0 or (firstname = ?1 and lastname = ?2)
2. Only supports starts/contains/ends/regex matching for strings and exact matching for other property types
使用
創(chuàng)建實(shí)體映射:
@Entity
@Table(name="t_user")
@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Column(name="username")
private String username;
@Column(name="password")
private String password;
@Column(name="email")
private String email;
@Column(name="phone")
private String phone;
@Column(name="address")
private String address;
}
測(cè)試查詢
@Test
public void contextLoads() {
User user = new User();
user.setUsername("admin");
Example<User> example = Example.of(user);
List<User> list = userRepository.findAll(example);
System.out.println(list);
}
打印的sql語(yǔ)句如下:
Hibernate:
select
user0_.id as id1_0_,
user0_.address as address2_0_,
user0_.email as email3_0_,
user0_.password as password4_0_,
user0_.phone as phone5_0_,
user0_.username as username6_0_
from
t_user user0_
where
user0_.username=?
可以發(fā)現(xiàn),試用Example查詢,默認(rèn)情況下會(huì)忽略空值,官方文檔也有說(shuō)明:
This is a simple domain object. You can use it to create an Example. By default, fields having null values are ignored, and strings are matched using the store specific defaults. Examples can be built by either using the of factory method or by using ExampleMatcher. Example is immutable.
在上面的測(cè)試之中,我們只是只是定義了Probe而沒有ExampleMatcher,是因?yàn)槟J(rèn)會(huì)不傳時(shí)會(huì)使用默認(rèn)的匹配器。點(diǎn)進(jìn)方法可以看到下面的代碼:
static <T> Example<T> of(T probe) {
return new TypedExample(probe, ExampleMatcher.matching());
}
static ExampleMatcher matching() {
return matchingAll();
}
static ExampleMatcher matchingAll() {
return (new TypedExampleMatcher()).withMode(ExampleMatcher.MatchMode.ALL);
}
自定匹配器規(guī)則
@Test
public void contextLoads() {
User user = new User();
user.setUsername("y");
user.setAddress("sh");
user.setPassword("admin");
ExampleMatcher matcher = ExampleMatcher.matching()
.withMatcher("username", ExampleMatcher.GenericPropertyMatchers.startsWith())//模糊查詢匹配開頭,即{username}%
.withMatcher("address" ,ExampleMatcher.GenericPropertyMatchers.contains())//全部模糊查詢,即%{address}%
.withIgnorePaths("password");//忽略字段,即不管password是什么值都不加入查詢條件
Example<User> example = Example.of(user ,matcher);
List<User> list = userRepository.findAll(example);
System.out.println(list);
}
打印的sql語(yǔ)句如下:
select
user0_.id as id1_0_,
user0_.address as address2_0_,
user0_.email as email3_0_,
user0_.password as password4_0_,
user0_.phone as phone5_0_,
user0_.username as username6_0_
from
t_user user0_
where
(
user0_.username like ?
)
and (
user0_.address like ?
)
參數(shù)如下:
2018-03-24 13:26:57.425 TRACE 5880 --- [ main] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [y%]
2018-03-24 13:26:57.425 TRACE 5880 --- [ main] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [VARCHAR] - [%sh%]
補(bǔ)充
官方創(chuàng)建ExampleMatcher例子(1.8 lambda)
ExampleMatcher matcher = ExampleMatcher.matching()
.withMatcher("firstname", match -> match.endsWith())
.withMatcher("firstname", match -> match.startsWith());
}
StringMatcher 參數(shù)
| Matching | 生成的語(yǔ)句 | 說(shuō)明 |
|---|---|---|
| DEFAULT (case-sensitive) | firstname = ?0 | 默認(rèn)(大小寫敏感) |
| DEFAULT (case-insensitive) | LOWER(firstname) = LOWER(?0) | 默認(rèn)(忽略大小寫) |
| EXACT (case-sensitive) | firstname = ?0 | 精確匹配(大小寫敏感) |
| EXACT (case-insensitive) | LOWER(firstname) = LOWER(?0) | 精確匹配(忽略大小寫) |
| STARTING (case-sensitive) | firstname like ?0 + ‘%' | 前綴匹配(大小寫敏感) |
| STARTING (case-insensitive) | LOWER(firstname) like LOWER(?0) + ‘%' | 前綴匹配(忽略大小寫) |
| ENDING (case-sensitive) | firstname like ‘%' + ?0 | 后綴匹配(大小寫敏感) |
| ENDING (case-insensitive) | LOWER(firstname) like ‘%' + LOWER(?0) | 后綴匹配(忽略大小寫) |
| CONTAINING (case-sensitive) | firstname like ‘%' + ?0 + ‘%' | 模糊查詢(大小寫敏感) |
| CONTAINING (case-insensitive) | LOWER(firstname) like ‘%' + LOWER(?0) + ‘%' | 模糊查詢(忽略大小寫) |
說(shuō)明:
1. 在默認(rèn)情況下(沒有調(diào)用withIgnoreCase())都是大小寫敏感的。
2. api之中還有個(gè)regex,但是我在mysql下測(cè)試報(bào)錯(cuò),不了解具體作用。
總結(jié)
通過(guò)在使用springdata jpa時(shí)可以通過(guò)Example來(lái)快速的實(shí)現(xiàn)動(dòng)態(tài)查詢,同時(shí)配合Pageable可以實(shí)現(xiàn)快速的分頁(yè)查詢功能。
對(duì)于非字符串屬性的只能精確匹配,比如想查詢?cè)谀硞€(gè)時(shí)間段內(nèi)注冊(cè)的用戶信息,就不能通過(guò)Example來(lái)查詢
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
Javaweb項(xiàng)目session超時(shí)解決方案
這篇文章主要介紹了Javaweb項(xiàng)目session超時(shí)解決方案,關(guān)于解決方案分類比較明確,內(nèi)容詳細(xì),需要的朋友可以參考下。2017-09-09
Java實(shí)戰(zhàn)之基于TCP實(shí)現(xiàn)簡(jiǎn)單聊天程序
這篇文章主要為大家詳細(xì)介紹了如何在Java中基于TCP實(shí)現(xiàn)簡(jiǎn)單聊天程序,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-03-03
eclipse自動(dòng)提示和自動(dòng)補(bǔ)全功能實(shí)現(xiàn)方法
這篇文章主要介紹了eclipse自動(dòng)提示和自動(dòng)補(bǔ)全的相關(guān)內(nèi)容,文中向大家分享了二者的實(shí)現(xiàn)方法代碼,需要的朋友可以了解下。2017-09-09
Java用split分割含一個(gè)或多個(gè)空格的字符串案例
這篇文章主要介紹了Java用split分割含一個(gè)或多個(gè)空格的字符串案例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)過(guò)來(lái)看看吧2020-09-09
IntelliJ IDEA連接MySQL數(shù)據(jù)庫(kù)詳細(xì)圖解
今天小編就為大家分享一篇關(guān)于intellij idea連接mysql數(shù)據(jù)庫(kù)詳細(xì)圖解,小編覺得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來(lái)看看吧2018-10-10
深入理解Java SpringCloud Ribbon 負(fù)載均衡
Ribbon是一個(gè)客戶端負(fù)載均衡器,它提供了對(duì)HTTP和TCP客戶端的行為的大量控制。這篇文章主要介紹了SpringCloud Ribbon 負(fù)載均衡的實(shí)現(xiàn),感興趣的小伙伴們可以參考一下2021-09-09
Java Integer[]和int[]互相轉(zhuǎn)換方式
這篇文章主要介紹了Java Integer[]和int[]互相轉(zhuǎn)換方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-12-12

