今天,公司一位同事遇到了一个 MyBatis 问题“attempted to return null from a method with a primitive return type (int).”请教我。我来说一说这类问题的解决思路!
首先,我们根据错误提示,翻译一下,大致是说,这个方法的返回类型是 int,而实际上它将尝试返回一个 null 值。
根据这个错误提示,我们就可以看出是方法的返回类型不对。
具体再看对应的方法,确定你的 SQL 是不是书写失误。比如,我这个新同事,犯的错误就很低级。
@Select("delete from xttblog where xttblog_id = #{id}")
int deleteXttblogById(@Param("id") Long id);
delete 语句,写了 select 的注解。
还有一种情况,查询时,返回的记录为空。比如,下面的例子:
<select id="getAgeById" parameterType="java.lang.String" resultType="int">
SELECT age FROM xttblog where id = #{id}
</select>
这种情况,假设 age 这个字段为空,那么 MyBatis 再把 null 转成 int,就会出错,因此会抛出这类一次!
所以,推荐的解决思路就是,根据错误提示,找到对应的方法,验证对应的 SQL ,注解,xml 配置的写法!
: » attempted to return null from a method with a primitive return type (int).
原创文章,作者:6024010,如若转载,请注明出处:https://blog.ytso.com/252939.html