欢迎光临散文网 会员登陆 & 注册

多易 亿级在线实时动态规则运营系统(v1架构)

2022-12-06 21:11 作者:娜娜络络  | 我要投稿

/**     * query 模糊查询     *     * @param field 字段     * @param value 模糊匹配目标值     * @param regex 添加自定义匹配规则     * @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);    }


多易 亿级在线实时动态规则运营系统(v1架构)的评论 (共 条)

分享到微博请遵守国家法律