当前位置:   article > 正文

mybatis中$和#的区别_mybtis #和$区别

mybtis #和$区别

在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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

输出的SQL语句为:

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

使用#取值,这样就会报错。因为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)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
==>  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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/158290
推荐阅读
相关标签
  

闽ICP备14008679号