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

Mybatis 中 ${}和 #{} 的区别

时间:2018-12-13 16:22:48      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:user   表示   where   预处理   用户信息   动态解析   的区别   数据   用户   

${} :

  1. ${} 则只是简单的字符串替换 
  2. 动态解析sql 表现为 select * from user where user_name = "lilei" 

${}使用应该注意的问题:

危险操作如下 select  * from ${tableName} where user_name = #{name}

如果此时 传进来的参数 tableName = "user ; delete user; -- "  动态解析之后如下:

select * from user ; delete user -- where user_name = ?

-- 之后的语句会被注释掉 ,原本的sql语句则变成了 查询所有的用户信息 + 删除用户表对数据库造成重大损伤

#{}:

  1. #{}在预处理时,会把参数部分用一个占位符 ? 表示 
  2. 表现为 select * form user where user_name = ?  

Mybatis 中 ${}和 #{} 的区别

标签:user   表示   where   预处理   用户信息   动态解析   的区别   数据   用户   

原文地址:https://www.cnblogs.com/yangjinprocess/p/10114096.html

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