您的位置:首页技术文章
文章详情页

解决myBatis返回integer值的问题

【字号: 日期:2023-10-21 13:32:36浏览:35作者:猪猪

经过测试

resultMap='java.lang.Integer'

改成

resultType='java.lang.Integer'

也可以解决问题~

补充知识:mybatis返回count(*)的整数值

1、mybatis中resultType定义为'java.lang.Integer'

<select resultType='java.lang.Integer'> select count(*) from tableName </select>

2、接口中返回值写成int,即可

int selectNums();

以上这篇解决myBatis返回integer值的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持好吧啦网。

标签: Mybatis 数据库
相关文章: