多易 億級(jí)在線實(shí)時(shí)動(dòng)態(tài)規(guī)則運(yùn)營系統(tǒng)(v1架構(gòu))
2022-12-06 21:11 作者:娜娜絡(luò)絡(luò) | 我要投稿
/**
? ? * query 模糊查詢
? ? *
? ? * @param field 字段
? ? * @param value 模糊匹配目標(biāo)值
? ? * @param regex 添加自定義匹配規(guī)則
? ? * @return
? ? */
? ?public static Criteria queryLike(String field, Object value, String regex) {
? ? ? ?Pattern compile = null;
? ? ? ?if (StringUtils.isNotBlank(regex)) {
? ? ? ? ? ?compile = Pattern.compile(regex);
? ? ? ?} else {
? ? ? ? ? ?compile = Pattern.compile("^.*" + value + ".*$", Pattern.CASE_INSENSITIVE);
? ? ? ?}
? ? ? ?return Criteria.where(field).regex(compile);
? ?}
標(biāo)簽: