码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis中#和$区别

时间:2019-01-05 16:41:51      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:替换   阶段   机制   字符串替换   映射文件   预编译   执行   动态   防止   

在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中#和$区别

标签:替换   阶段   机制   字符串替换   映射文件   预编译   执行   动态   防止   

原文地址:https://www.cnblogs.com/l-x-x-y-d-j/p/10224838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!