当前位置: 代码迷 >> 综合 >> MyBatis报错:attempted to return null from a method with a primitive return type (int)
  详细解决方案

MyBatis报错:attempted to return null from a method with a primitive return type (int)

热度:67   发布时间:2023-11-22 09:00:21.0

在学习mybatis时,进行对数据库的插入操作时报错如下:

原来是配置mapper.xml文件时,标签用错了,进行插入时要用<insert>标签

改成如下图所示,就可以正常运行出结果了。

附:MyBatis映射文件常用配置标签

<select>:查询

<insert>:插入

<update>:修改

<delete>:删除

<where>:where条件

<if>:if判断

<foreach>:循环

<sql>:sql片段抽取

  相关解决方案