模糊查询 防止 sql注入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模糊查询 防止 sql注入相关的知识,希望对你有一定的参考价值。
mysql mybatis 环境:
1>. 处理sql特殊字符 {"*","%","_"} --> 替换为 "/*","/%","/_"
2>. sql 中处理,定义‘/’ 为转义字符
public abstract class BaseEntity extends PrimaryKeyObject<Long> {
private static final long serialVersionUID = 1L;
@Transient // 用于注释pojo对象中的属性,被注释的属性将成为短暂的,不会持久化。
protected Boolean escapeChar; // 是否包含转义字符
protected String keyword; // 模糊查询关键字
public String getKeyword() {
return keyword == null ? null : keyword.trim();
}
public void setKeyword(String keyword) {
this.keyword = keyword == null ? null : keyword.trim();
}
public Boolean getEscapeChar() {
this.getNewKeyword();
return escapeChar;
}
public void setEscapeChar(Boolean escapeChar) {
this.escapeChar = escapeChar;
}
// 处理sql特殊字符 {"*","%","_"} --> 替换为 "/*","/%","/_"
private void getNewKeyword() {
if (escapeChar == null) {
escapeChar = false;
}
if (StringUtils.isNotEmpty(keyword) && !escapeChar) {
Pattern p1 = Pattern.compile("\\*|%|_");
Matcher m1 = p1.matcher(keyword);
StringBuffer buf = new StringBuffer();
while (m1.find()) {
m1.appendReplacement(buf, "/" + m1.group());
}
m1.appendTail(buf);
String newkeyword = buf.toString();
if (!keyword.equals(newkeyword)) {
this.setEscapeChar(true);
this.setKeyword(newkeyword);
}
}
}
}
<!-- 模糊查询 -->
<if test="keyword != null">
<choose>
<when test=true >
and (
name like CONCAT("%",#{keyword},"%") escape ‘/‘
or
uname like CONCAT("%",#{keyword},"%") escape ‘/‘
)
</when>
<when test=false>
</when>
</choose>
</if>
本文出自 “俺乐意” 博客,请务必保留此出处http://zfeng.blog.51cto.com/9273759/1783001
以上是关于模糊查询 防止 sql注入的主要内容,如果未能解决你的问题,请参考以下文章