日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 综合教程 >内容正文

综合教程

Examplematcher 模糊查询需要重新 生成mather 变量要不然 无效

發(fā)布時(shí)間:2023/12/13 综合教程 32 生活家
生活随笔 收集整理的這篇文章主要介紹了 Examplematcher 模糊查询需要重新 生成mather 变量要不然 无效 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

原文連接 :https://blog.csdn.net/qq_28226741/article/details/108636173?utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2~aggregatepage~first_rank_v2~rank_aggregation-1-108636173.pc_agg_rank_aggregation&utm_term=example%E6%A8%A1%E7%B3%8A%E6%9F%A5%E8%AF%A2&spm=1000.2123.3001.4430

在對(duì)MongoDB進(jìn)行模糊查詢時(shí),使用JPA框架的Example匹配查詢,出現(xiàn)模糊查詢沒有生效,只有精確查詢生效的現(xiàn)象。

下邊是官網(wǎng)的寫法:

ExampleMatcher matcher = ExampleMatcher.matching()
.withMatcher("firstname", match -> match.endsWith())
.withMatcher("firstname", match -> match.startsWith());

下面是我自己的寫法:

ExampleMatcher exampleMatcher = ExampleMatcher.matching();
exampleMatcher.withMatcher("pageAliase",ExampleMatcher.GenericPropertyMatcher::contains);

導(dǎo)致不生效的原因是,因?yàn)閙atcher.withMatcher會(huì)返回一個(gè)新的matcher,不是開始實(shí)例化的了(第一行生成的matcher并沒有增加字段的模糊匹配),所以換成以下:

ExampleMatcher exampleMatcher = ExampleMatcher.matching();
exampleMatcher = exampleMatcher.withMatcher("pageAliase",ExampleMatcher.GenericPropertyMatcher::contains);

總結(jié)

以上是生活随笔為你收集整理的Examplematcher 模糊查询需要重新 生成mather 变量要不然 无效的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。