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

Mybatis多个参数连续传递

时间:2016-08-05 11:34:10      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

// order by 排序 

//<![CDATA[ 值 ]]> 过滤符号

//${}方式会引发SQL注入

//#{} 解析的是占位符

<![CDATA[ order by ${参数1} ${参数2} ]]>

 

例子:

SQL:select * from A where A.id=#{id}

id=hello

解析:select * from A where A.id=?

 

SQL:select * from A where A.id=#{id}

id=hello

解析:select * from A where A.id=hello

Mybatis多个参数连续传递

标签:

原文地址:http://www.cnblogs.com/xiaoxinbok/p/5740180.html

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