1) Ibatis中使用like ‘%#filedName#%’ 时,有什么问题? 在xml映射文件中,如果直接按如上写法,会报异常:java.sql.SQLException: Invalid argument in JDBC call: parameter index out of range: 1.所以一般会采用如下两种方式:1) 将#换成$,如like ‘%$ filedName $%’,这样就没有问题了..2) 采用字符串联接符||,如:like ‘%’||# filedName #|…