Ibatis关于模糊查询不能用#的问题
最近在开发一个项目,用到的是Ibatis,因为本人以前开发都是用的Hibernate,所以对Ibatis也是接触的并不多。在昨天的开发过程中,发现写模糊查询语句时用#给参数赋值时一直报找不到属性的异常,起初还一直以为是paramMap在赋值时出现问题,如下
<isNotNull property="name" prepend="and">
name like '#name#%'
</isNotNull>
这是我起初的写法,结果报
com.ibatis.common.jdbc.exception.NestedSQLException:
--- The error occurred while applying a parameter map.
--- Check the goods.ibatorgenerated_countByExample-InlineParameterMap.
--- Check the parameter mapping for the 'name' property.
--- Cause: java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0).
解决办法也很简单,因为模糊查询是针对字符串而言的,如果遇到两个单引号要包含一个参数,则不能再用#来引用变量了,而应该改为$,比如:'$name$%',当然,也可以使用 #name# || '%' 或者conact(#name#,"%")来绕过此问题。