mybatis中bind标签和concat的使用说明
首先,二种方式都可以用来模糊查询,都能预防 sql 注入。但是在更换数据库情况下,bind标签通用。
<if test=” username != null and username !=””> and username like concat('%' ,#{username},'%') </if>
使用concat函数连接字符串,在mysql中这个函数支持多个参数,但是在oracle中这个函数只支持2个参数,由于不同数据库之间的语法差异,更换数据库,这些语法就需要重写。可以用bind标签来避免更换数据库所带来的一些麻烦。
bind 标签可以使用 ognl 表达式创建一个变量井将其绑定到上下文中。
<bind name= " usernamebind ” value = ”' % '+ usernarne + ' %'” /> <if test=” username != null and username !=””> and username like #{usernamebind} </if>
bind 标签的两个属性都是必选项, name 为绑定到上下文的变量名, value 为 ognl 表达式。创建一个 bind 标签的变量后 , 就可以在下面直接使用,使用 bind 拼接字符串不仅可以避免因更换数据库而修改 sql,也能预防 sql 注入,还能实现多个引用usernamebind
补充知识:mybatis在oracle数据库下用concat函数模糊查询之参数个数无效错误
oracle拼接字符串concat需要注意的小事项
在用ssm框架编写代码的时候,因为数据库换成了oracle,在模糊查询数据的时候突然发现报错了
select * from sys_menu where url like concat('%',#{rolename},'%')
一直报错参数个数无效,在网上查找资料发现模糊查询的sql语句还是concat('%','s','%')这样写的
但后面发现实际上oracle中不支持concat的三个参数的拼接,需要更正为
select * from sys_menu where url like concat(concat('%',#{rolename}),'%')
或者使用
select * from sys_menu where url like '%' || #{rolename} || '%';
以上这篇mybatis中bind标签和concat的使用说明就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。