MyBatis查询无记录时的返回值问题
mybatis查询无记录的返回值
在mybatis 3.4.1下
如果dao的返回值是实体,则select查询无记录时返回null。容易报空指针异常!
notice findbyid();
如果dao的返回值是list,则select查询无记录是返回的是[],也就是空数组,
而不是null。所以这时候判空需要用collectionutils.isnotempty(),而不是"==null"
list<notice> findbyid();
查询无结果时的返回值报错问题
mybatis的查询无结果时报错
(方法名)queryallnumfromcart attempted to return null from a method with a primitive return type (long)的问题
queryallnumfromcart此方法在mapper.xml中是这样定义的:
<select id="queryallnumfromcart" parametertype="java.lang.integer" resulttype="java.lang.long"> select sum(num) from t_cart where user_id = #{userid} </select>
在mapper中是这样定义的:
long queryallnumfromcart(integer userid); //返回值为long类型
调用后运行报错:
java.lang.runtimeexception: org.apache.ibatis.binding.bindingexception: mapper method 'com.egoo.mapper.cartmapper.queryallnumfromcart attempted to return null from a method with a primitive return type (long).
org.apache.ibatis.binding.bindingexception: mapper method 'com.egoo.mapper.cartmapper.queryallnumfromcart attempted to return null from a method with a primitive return type (long).
at org.apache.ibatis.binding.mappermethod.execute(mappermethod.java:94)
at org.apache.ibatis.binding.mapperproxy.invoke(mapperproxy.java:59)
at com.sun.proxy.$proxy16.queryallnumfromcart(unknown source)
at com.egoo.service.impl.cartserviceimpl.gettotalfrommysql(cartserviceimpl.java:370)
at com.alibaba.dubbo.common.bytecode.wrapper2.invokemethod(wrapper2.java)
at com.alibaba.dubbo.rpc.proxy.javassist.javassistproxyfactory$1.doinvoke(javassistproxyfactory.java:47)
at com.alibaba.dubbo.rpc.proxy.abstractproxyinvoker.invoke(abstractproxyinvoker.java:76)
at com.alibaba.dubbo.config.invoker.delegateprovidermetadatainvoker.invoke(delegateprovidermetadatainvoker.java:52)
at com.alibaba.dubbo.rpc.protocol.invokerwrapper.invoke(invokerwrapper.java:56)
at com.alibaba.dubbo.rpc.filter.exceptionfilter.invoke(exceptionfilter.java:62)
......
主要报错原因的语句为:
(method)attempted to return null from a method with a primitive return type (long)
此方法企图从定义了原始的返回类型(long)的方法中返回null ,显而易见,此处的返回值类型有问题。网上搜了之后发现是mybais的返回值为包装类,且sql语句的定义的返回值类型为:java.lang.long。查询数据库为空后,会返回null而不是0l,所以此处需要将方法的返回值类型改为包装类java.lang.long:
//long queryallnumfromcart(integer userid); //当查询到的数据为0条时,会返回null,而不是0,可以改为包装类
或者在sql语句中加入ifnull(expr1,expr2)的函数进行判断:
select ifnull(sum(num),0) from t_cart where user_id = 1
建议还是使用修改sql语句的方式。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
关于MyBatis 查询数据时属性中多对一的问题(多条数据对应一条数据)
-
MyBatis查询时属性名和字段名不一致问题的解决方法
-
mybatis-plus的selectById(或者selectOne)在根据主键ID查询实体对象的时候偶尔会出现null的问题记录
-
记录一个C++在条件查询时遇到的问题(推荐)
-
MyBatis查询无记录时的返回值问题
-
springboot使用mybatis一对多的关联查询问题记录
-
解决Mybatis模糊查询时%(百分号)和_(下划线)可以查到数据的问题
-
关于MyBatis 查询数据时属性中多对一的问题(多条数据对应一条数据)
-
MyBatis查询时属性名和字段名不一致问题的解决方法
-
mybatis-plus的selectById(或者selectOne)在根据主键ID查询实体对象的时候偶尔会出现null的问题记录