码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis中查询结果为空时不同返回类型对应返回值

时间:2019-10-13 00:31:45      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:基础   hash   font   binding   mit   prim   四种   异常   解决   

今天在别人的代码基础上实现新需求,看到对于mybatis查询结果的判断不是很正确,如果查询结果为空就会异常,不知道大家有没有这样的疑惑:mybatis中resultType有多种返回类型,对于每种不同类型,查询结果为空时dao接口的返回值是一样的吗?接下来我就总结一下常见的几种情况。

第一种:resultType为基本类型,如string(在此暂且把string归纳为基本类型)

  如果select的结果为空,则dao接口返回结果为null

第二种,resultType为基本类型,如int

后台报异常:
org.apache.ibatis.binding.BindingException: Mapper method ‘com.fkit.dao.xxDao.getUserById attempted to return null from a method with a primitive return type (int).
解释:查询结果为null,试图返回null但是方法定义的返回值是int,null转为int时报错
解决办法:修改select的返回值为String

第三种 resultType为类为map ,如map、hashmap

  dao层接口返回值为null

第四种 resultType 为list ,如list

  dao层接口返回值为[],即空集合。

注意:此时判断查询是否为空就不能用null做判断

第五种 resultType 为类 ,如com.fkit.pojo.User

  dao层接口返回值null

mybatis中查询结果为空时不同返回类型对应返回值

标签:基础   hash   font   binding   mit   prim   四种   异常   解决   

原文地址:https://www.cnblogs.com/xxjcai/p/11664315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!