mybatis中$和#的区别

在mybatsi中,
${}会直接取值为string,直接写在SQL中。
#{}会表现为在SQL中一个占位符,然后取参数对应的值进行填充SQL

${}在动态解析的时候,会将我们传入的参数当做String字符串填充到我们的语句中,就会变成下面的语句

1.使用${}取值。会直接拼接到SQL中,而不会作为占位符

		<!-- foreach实现动态update
		
		这一节主要介绍当参数类型是 Map 时, foreach 如何实现动态 UPDATE 。
当参数是 Map 类型的时候, foreach 标签的工 ndex 属性值对应的不是索引值,而是 Map
中的 key,利用这个 key 可以实现动态 UPDATE 。
现在需要通过指定的列名和对应的值去更新数据
		 -->
		<update id="updateByMap">
			update sys_user
			set
		<foreach collection="_parameter" item="val" index = "key" separator=",">
			${key} = #{val}
		</foreach>
		where
		id = #{id}
	</update>

输出的SQL语句为:

==>  Preparing: update sys_user set user_name = ? , id = ? where id = ? 
==> Parameters: 1222(String), 1(Long), 1(Long)

使用#取值,这样就会报错。因为set 后面应该都是列名称,不应该带’’


		<update id="updateByMap">
			update sys_user
			set
		<foreach collection="_parameter" item="val" index = "key" separator=",">
			#{key} = #{val}
		</foreach>
		where
		id = #{id}
	</update>
==>  Preparing: update sys_user set ? = ? , ? = ? where id = ? 
==> Parameters: user_name(String), 1222(String), id(String), 1(Long), 1(Long)
==>  Preparing: update sys_user set ? = ? , ? = ? where id = ? 
==> Parameters: user_name(String), 1222(String), id(String), 1(Long), 1(Long)
org.apache.ibatis.exceptions.PersistenceException: 
### Error updating database.  Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''user_name' = '1222'
		 , 
			'id' = 1
		 
		where
		id = 1' at line 4
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值