---------LIKE '%#{location}%' 使用mybatis执行以上sql的时候为什么会出现Parameter index out of range (1 > number of parameters, which is 0)? 参考了下面这位http://blog.csdn.net/t123012009065/article/details/9469727 写like语句的时候 一般都会写成 like '% %' 在mybatis里面写就是应该是 like '%${name} %' 而不是 '%#{name} %' ${name} 是不带单引号的,而#{name} 是带单引号的 还是没有搞定 也检查了这些错误http://blog.sina.com.cn/s/blog_6df227a40101709h.html 最后改成这样就ok了 也不知道为什么? 求大声指明