当前位置:网站首页>#{}和${}的区别
#{}和${}的区别
2022-07-28 22:23:00 【m0_54861649】
在使用mybatis的时候我们会使用到#{}和${}这两个符号来为sql语句传参数
那么这两者有什么区别呢?
1.#{}是预编译处理,是占位符,${}是字符串替换,是拼接符
2.Mybatis在处理#{}的时候会将sql中的#{}替换成?号,调用PreparedStatement来赋值
如:select * from user where name = #{userName};设userName=yuze
看日志我们可以看到解析时将#{userName}替换成了 ?
select * from user where name = ;
然后再把yuze放进去,外面加上单引号
3.Mybatis在处理 的时候就是把 {}的时候就是把 的时候就是把{}替换成变量的值,调用Statement来赋值
如:select * from user where name = #{userName};设userName=yuze
看日志可以发现就是直接把值拼接上去了
select * from user where name = yuze;
这极有可能发生sql注入,下面举了一个简单的sql注入案例
4.#{}的变量替换是在DBMS中、变量替换后,#{}对应的变量自动加上单引号
5. 的变量替换是在 D B M S 外、变量替换后, {}的变量替换是在DBMS外、变量替换后, 的变量替换是在DBMS外、变量替换后,{}对应的变量不会加上单引号
6.使用#{}可以有效的防止sql注入,提高系统的安全性
下面举一个简单的sql注入问题:
这是一条用户的账号、密码数据
当用户登录,我们验证账号密码是否正确时用这个sql:
username=yyy;password=123
select * from user where username=${username} and password=${password}
显然这条sql没问题可以查出来,但是如果有人不知道密码但是想登录账号怎么办
我们不需要填写正确的密码:
密码输入1 or 1=1,sql执行的其实是
select * from user where username='yyy' and password=1 or 1 =1
注意:这里的yyy外面的单引号不是 符号提供的。 {}符号提供的。 符号提供的。{}没有这个功能,可以是sql手动拼接的,这里前后逻辑可能并不严密,但是sql入去最简单的例子就是这样。
边栏推荐
- [detailed and super simple] how to use websocket links
- 双重for循环优化
- 实时数仓:网易严选基于Flink的实时数仓实践
- EN 1873 assembly accessories for roofing - plastic single roof lamps - CE certification
- Uricase - Characteristics of uricase in Worthington pig liver:
- Leetcode63. 不同路径 II
- Zibo station construction guide (aigler)
- Wildcard ssl/tls certificate
- 跳表的原理
- DoIP测试开发实践
猜你喜欢
AutoCAD -- import excel tables into CAD and merge CAD
Solution: direct local.Aar file dependencies are not supported when building an aar
[microservice] Nacos cluster building and loading file configuration
实时数仓:美团基于Flink的实时数仓建设实施
SAP 临时表空间错误处理
Genomic DNA isolation Worthington ribonuclease A
Doip communication of canoe application case
pycharm配置运行环境
Develop effective Tao spell
Leetcode59. Spiral matrix II
随机推荐
PHP poster QR code synthesis
Leetcode59. Spiral matrix II
Hutool official website (is hutool easy to use)
【TA-霜狼_may-《百人计划》】美术2.2 模型基础
Leetcode60. 排列序列
Principle of meter skipping
1-8 basic use of props
1-8 props的基础使用
Opencv macro definition
【C】 Replace spaces and realize binary parity bit exchange of integers by macros
PowerCLi VMware vCenter 通过自建的PXE Server一键批量部署常规New-VM
Servlet operation principle_ API details_ Advanced path of request response construction (servlet_2)
[detailed and super simple] how to use websocket links
SAP 临时表空间错误处理
【C】 Introduction and Simulation Implementation of ATOI and offsetof
Real time data warehouse: meituan reviews Flink's real-time data warehouse application sharing
leetcode 763. Partition Labels 划分字母区间(中等)
Develop effective Tao spell
EN 12101-8:2011 smoke dampers for smoke and heat control systems - CE certification
DoIP测试开发实践