mybatis中#和$区别
Posted l-x-x-y-d-j
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中#和$区别相关的知识,希望对你有一定的参考价值。
在Mybtis中的Mapper映射文件中,sql语句传参有两种方式#{}和${}
一般来说,我们通常使用的是#{},这里采用的是预编译机制,防止SQL注入,将#{}中的参数转义成字符串,例如:
执行SQL:Select * from users where username = #{username}
参数:username=lxd
解析后执行的SQL:Select * from users where username = ?
执行SQL:Select * from users where name = ${username}
参数:username传入值为:lxd
解析后执行的SQL:Select * from users where username =lxd
#{} 和 ${} 在预编译中的处理是不一样的。#{} 在预处理时,会把参数部分用一个占位符 ? 代替,变成如下的 sql 语句:
select * from user where username = ?;
而 ${} 则只是简单的字符串替换,在动态解析阶段,该 sql 语句会被解析成
select * from user where username = ‘lxd‘;
表名用参数传递进来的时候,只能使用 ${}
以上是关于mybatis中#和$区别的主要内容,如果未能解决你的问题,请参考以下文章
mybatis定义别名typealias和package的区别