Mybatis-Plus模糊查询(like)特殊字符_、\、%时的处理方式

一:直接定义函数进行处理

public static String escapeStr(String str) {
if (StringUtils.isEmpty(str)) {
str = str.replaceAll("\\\\", "\\\\\\\\");
str = str.replaceAll("_", "\\\\_");
str = str.replaceAll("%", "\\\\%");
}
return str;
}

 二:Mapper 中sql 处理

select * from staff where name like CONCAT('%', '%' , '%') escape '%';

 

上一篇:JavaScript .replaceAll() is not a function type error


下一篇:ES12 replaceAll 浏览器不兼容