赞
踩
- ### Cause: org.postgresql.util.PSQLException: 错误: 无法确定参数 $1 的数据类型
- ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: 错误: 无法确定参数 $1 的数据类型] with root cause
- org.postgresql.util.PSQLException: 错误: 无法确定参数 $1 的数据类型
Mapper.xml配置
- where 1=1
- <if test="name != null and name != ''">
- AND name like concat('%', #{name} , '%')
- </if>
排查发现是第一个if条件中的like参数出现无法识别数据类型的异常,将其强转一下类型即可
- where 1=1
- <if test="name != null and name != ''">
- AND name like concat('%', #{name}::text , '%')
- </if>
方式二修改
- where 1=1
- <if test="name != null and name != ''">
- AND name like '%'||#{name}||'%'
- </if>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。