mybatis中xml文件的${}和#{}区别
在项目中要实现所有业务批量提交的功能,实现方式,把表名,表主键字段当做参数传递,在xml文件中全部使用的#{},导致解析的时候出现问题。1 #是将传入的值当做字符串的形式, eg:select id,name,age from student where id=#{id},当前端把 id 值 1,传入到后台的时候,就相当于 select id,name,age from studentwhe...