亲宝软件园·资讯

展开

myBatis返回integer值 解决myBatis返回integer值的问题

xianmin_yan 人气:0

经过测试

resultMap="java.lang.Integer"

改成

resultType="java.lang.Integer"

也可以解决问题~

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

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

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

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

int selectNums();

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

加载全部内容

相关教程
猜你喜欢
用户评论