当前位置:网站首页>#{}和${}的区别
#{}和${}的区别
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入去最简单的例子就是这样。
边栏推荐
- Multi sensor fusion positioning (I) -- 3D laser odometer
- JS four formulas for judging data types
- SQL left connection, internal connection writing method "recommended collection"
- Leetcode60. permutation sequence
- CANoe应用案例之DoIP通信
- 1-7 解决类中方法的this指向问题
- Applet editor rich text editing and rich text parsing
- NAT如何配置地址转换
- 【微服务】Nacos集群搭建以及加载文件配置
- 【C】 Replace spaces and realize binary parity bit exchange of integers by macros
猜你喜欢

Leetcode59. Spiral matrix II

SQL实现将多行记录合并成一行

以JSP为视图解析器搭建SSM项目

【C】 Reverse string (two recursive ideas)

【C】替换空格,宏实现整数的二进制奇偶位交换

SQL implementation merges multiple rows of records into one row

Tyrosine decarboxylase -- characteristics of tyrosine decarboxylase of Streptococcus faecalis in Worthington

熊市下PLATO如何通过Elephant Swap,获得溢价收益?

Worthington RNA determination detailed introduction

Leetcode60. permutation sequence
随机推荐
laptop外接显示器
Detailed principle explanation and verification results of digital clock based on FPGA
Uricase - Characteristics of uricase in Worthington pig liver:
Yolov5 learning notes (I) -- principle overview
Type 1-5 components
【C】 Reverse string (two recursive ideas)
[MySQL series] MySQL database foundation
跳表的原理
Principle of meter skipping
Develop effective Tao spell
Solution: direct local.Aar file dependencies are not supported when building an aar
熊市下PLATO如何通过Elephant Swap,获得溢价收益?
Hutool official website (is hutool easy to use)
【C】atoi和offsetof的介绍和模拟实现
1-8 basic use of props
Word中的\n是什么?:^p
Leetcode59. 螺旋矩阵 II
curl (7) Failed connect to localhost8080; Connection refused
以JSP为视图解析器搭建SSM项目
【C】喝汽水,找单身狗问题