mybatis查询出错:
nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'tableName' in 'class java.lang.String'
出错原因
具体涉及代码:
mapper.xml
<!--检查表是否存在-->
<select id="checkIsTableExists" parameterType="String" resultType="Integer">
SELECT COUNT(*) as "countNum"
FROM USER_TABLES
WHERE TABLE_NAME = ${tableName}
</select>
Mapper类
/**
* 检查表是否存在
*
* @param tableName 表名
* @return 数量
*/
Integer checkIsTableExists(String tableName);
解决办法
修改代码:
/**
* 检查表是否存在
*
* @param tableName 表名
* @return 数量
*/
Integer checkIsTableExists(@Param(value = "tableName") String tableName);
参考:
最新评论
黑镜4k被和谐,哥
地址已经无效
谢谢,大神的分享
你们都能正常用吗?我怎么不能呀,没有几个能放