解决myBatis返回integer值的问题
经过测试
将
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值的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
以上是 解决myBatis返回integer值的问题 的全部内容, 来源链接: utcz.com/z/343975.html